如何在Laravel 5.3迁移中将十进制列添加到现有表

时间:2017-02-14 09:40:27

标签: php laravel-5.3

我尝试在Laravel 5.3项目中遵循3个代码,将新的十进制列添加到现有表中。但它每次都会给出同样的错误。

Schema::table('mileages', function (Blueprint $table) {
    $table->addColumn('decimal', 'cost');
});

Schema::table('mileages', function (Blueprint $table) {
    $table->addColumn('decimal', 'cost', ['default'=>0]);
});

Schema::table('mileages', function (Blueprint $table) {
    $table->addColumn('decimal', 'cost', ['default'=>'0,0']);
});

错误是:

[Illuminate\Database\QueryException]                                                                                 
SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that  
corresponds to your MariaDB server version for the right syntax to use near ' ) not null' at line 1 (SQL: alter table `mileages` add `cost` decimal (, ) not null) 
我错过了什么吗?

2 个答案:

答案 0 :(得分:5)

您正在尝试使用->addColumn(),这不是一个非常正确的语法。

创建新迁移php artisan make:migrate add_cost_column_to_mileages

然后在您的迁移中,您希望它看起来像这样:

Schema::table('mileages', function (Blueprint $table) {
    $table->decimal('cost', 5,2); //Substitute 5,2 for your desired precision
});

这是为了下来:

Schema::table('mileages', function (Blueprint $table) {
    $table->dropColumn('cost');
});

这是来自文档here,虽然它们没有明确说明。

答案 1 :(得分:0)

Schema::table('mileages', function (Blueprint $table) {
    $table->addColumn('decimal',2);
});