Skip to content

Commit adc329d

Browse files
authored
Default value on locked settings
1 parent 48d5046 commit adc329d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

database/migrations/2022_11_08_172846_create_settings_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public function up()
1313

1414
$table->string('group')->index();
1515
$table->string('name');
16-
$table->boolean('locked');
16+
$table->boolean('locked')->default(false);
1717
$table->json('payload');
1818

1919
$table->timestamps();

0 commit comments

Comments
 (0)