mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-12 16:44:08 -08:00
Update checkin_notification_user migration change default value to 1
This commit is contained in:
parent
6dc8729095
commit
20258d9d7e
|
@ -13,7 +13,7 @@ class CheckinNotificationUser extends Migration
|
||||||
public function up()
|
public function up()
|
||||||
{
|
{
|
||||||
Schema::table('settings', function ($table) {
|
Schema::table('settings', function ($table) {
|
||||||
$table->boolean('checkin_notification_user')->default(0);
|
$table->boolean('checkin_notification_user')->default(1);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue