changed the down method change

This commit is contained in:
Godfrey M 2023-09-13 13:24:26 -07:00
parent 0c504fed49
commit f283a5f755

View file

@ -26,7 +26,7 @@ class FixAssetModelMinQtyNullability extends Migration
public function down()
{
Schema::table('models', function (Blueprint $table) {
$table->integer('min_amt')->default(null)->change();
$table->integer('min_amt')->nullable(false)->change();
});
}
}