From 9dda0d02eab031231c6acebebb8cf27ee3409910 Mon Sep 17 00:00:00 2001 From: snipe Date: Wed, 27 Jul 2016 21:47:03 -0700 Subject: [PATCH] Change default zerofill to 5 --- .../migrations/2016_07_27_211034_add_zerofill_to_settings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2016_07_27_211034_add_zerofill_to_settings.php b/database/migrations/2016_07_27_211034_add_zerofill_to_settings.php index f560c74a4d..3746eb4b26 100644 --- a/database/migrations/2016_07_27_211034_add_zerofill_to_settings.php +++ b/database/migrations/2016_07_27_211034_add_zerofill_to_settings.php @@ -13,7 +13,7 @@ class AddZerofillToSettings extends Migration public function up() { Schema::table('settings', function (Blueprint $table) { - $table->integer('zerofill_count')->default(0); + $table->integer('zerofill_count')->default(5); }); }