mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-13 17:14:10 -08:00
Possible fix for travis donkery
This commit is contained in:
parent
25e99194ce
commit
e009bb956d
|
@ -22,7 +22,7 @@ class AddNextAutoincrementToSettings extends Migration
|
||||||
}
|
}
|
||||||
|
|
||||||
Schema::table('settings', function (Blueprint $table) use ($next) {
|
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');
|
\Log::debug('Setting '.$next.' as default auto-increment');
|
||||||
|
|
Loading…
Reference in a new issue