chore(migration): ssl cert and key should not be nullable

This commit is contained in:
peaklabs-dev 2025-01-30 19:52:49 +01:00
parent 34188450eb
commit 22c26cdf78
No known key found for this signature in database

View file

@ -10,8 +10,8 @@ public function up()
{
Schema::create('ssl_certificates', function (Blueprint $table) {
$table->id();
$table->text('ssl_certificate')->nullable();
$table->text('ssl_private_key')->nullable();
$table->text('ssl_certificate');
$table->text('ssl_private_key');
$table->string('resource_type')->nullable();
$table->unsignedBigInteger('resource_id')->nullable();
$table->timestamp('valid_until')->nullable();