chore(migration): remove unused columns
This commit is contained in:
parent
429453af36
commit
2ac9147532
2 changed files with 0 additions and 6 deletions
|
|
@ -9,13 +9,8 @@ class SslCertificate extends Model
|
|||
protected $fillable = [
|
||||
'ssl_certificate',
|
||||
'ssl_private_key',
|
||||
'cert_file_path',
|
||||
'key_file_path',
|
||||
'resource_type',
|
||||
'resource_id',
|
||||
'mount_path',
|
||||
'host_path',
|
||||
'certificate_type',
|
||||
'valid_until',
|
||||
];
|
||||
|
||||
|
|
|
|||
|
|
@ -14,7 +14,6 @@ public function up()
|
|||
$table->text('ssl_private_key')->nullable();
|
||||
$table->string('resource_type')->nullable();
|
||||
$table->unsignedBigInteger('resource_id')->nullable();
|
||||
$table->enum('certificate_type', ['internal', 'external'])->default('internal');
|
||||
$table->timestamp('valid_until')->nullable();
|
||||
$table->timestamps();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue