Skip to content

Commit

Permalink
Value should be nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
nickdekruijk committed May 4, 2021
1 parent fe3ca94 commit 27bb843
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/migrations/2018_01_20_121139_create_settings_table.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public function up()
$table->increments('id');
$table->string('key')->unique()->index();
$table->string('description')->nullable();
$table->longText('value');
$table->longText('value')->nullable();
$table->timestamps();
});
}
Expand Down

0 comments on commit 27bb843

Please sign in to comment.