unsigned decimal migration

This commit is contained in:
2019-10-22 21:37:47 -05:00
parent f11b1c7f4a
commit 1052689b30

View File

@@ -19,7 +19,7 @@ class CreateHualingConfigTable extends Migration
$table->string('load_size')->unique();
$table->unsignedBigInteger('min_load_size');
$table->unsignedBigInteger('max_load_size');
$table->decimal('price_per_jump', 12, 2);
$table->unsignedDecimal('price_per_jump', 12, 2);
$table->timestamps();
});
}