From e009bb956d228718ccc73e59e6a38deccf5f8a9d Mon Sep 17 00:00:00 2001 From: snipe Date: Tue, 20 Jun 2017 19:48:57 -0700 Subject: [PATCH] Possible fix for travis donkery --- .../2017_06_14_122059_add_next_autoincrement_to_settings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2017_06_14_122059_add_next_autoincrement_to_settings.php b/database/migrations/2017_06_14_122059_add_next_autoincrement_to_settings.php index a0c919d99e..682aa7960c 100644 --- a/database/migrations/2017_06_14_122059_add_next_autoincrement_to_settings.php +++ b/database/migrations/2017_06_14_122059_add_next_autoincrement_to_settings.php @@ -22,7 +22,7 @@ class AddNextAutoincrementToSettings extends Migration } Schema::table('settings', function (Blueprint $table) use ($next) { - $table->bigInteger('next_auto_tag_base')->nullable()->default(null); + $table->bigInteger('next_auto_tag_base')->default('1'); }); \Log::debug('Setting '.$next.' as default auto-increment');