chore(migration): ssl cert and key should not be nullable
This commit is contained in:
parent
34188450eb
commit
22c26cdf78
1 changed files with 2 additions and 2 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Reference in a new issue