chore(migration): remove unused columns

This commit is contained in:
peaklabs-dev
2025-01-30 14:16:52 +01:00
parent 429453af36
commit 2ac9147532
2 changed files with 0 additions and 6 deletions

View File

@@ -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',
];

View File

@@ -14,7 +14,6 @@ return new class extends Migration
$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();