Schema::table('products', function($table) {
$table->double('sales_price')->change();
});
答案 0 :(得分:0)
doctrine / dbal不支持双重改变。你可以用十进制代替双倍。
Schema::table('products', function ($table) {
$table->decimal('sales_price', 8, 6)->change();
});