Skip to content

Commit

Permalink
Merge pull request #93 from devaslanphp/feature/default-value-on-sett…
Browse files Browse the repository at this point in the history
…ings

Default value on locked settings
  • Loading branch information
mihaisolomon authored Sep 15, 2023
2 parents 48d5046 + adc329d commit c6e8d89
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public function up()

$table->string('group')->index();
$table->string('name');
$table->boolean('locked');
$table->boolean('locked')->default(false);
$table->json('payload');

$table->timestamps();
Expand Down

0 comments on commit c6e8d89

Please sign in to comment.