Change default zerofill to 5

This commit is contained in:
snipe 2016-07-27 21:47:03 -07:00
parent 9fbe6c68ac
commit 9dda0d02ea

View file

@ -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);
});
}