更改列类型Laravel 5

时间:2018-05-17 19:09:11

标签: php laravel laravel-5.4

为什么我会收到以下错误

 SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NOT NULL  
   COLLATE utf8mb4_unicode_ci' at line 1 (SQL: ALTER TABLE questions CHANGE category_id category_id INT DEFAULT  NOT NULL COLLATE utf8mb4_unicode_ci)

SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NOT NULL  
   COLLATE utf8mb4_unicode_ci' at line 1 

执行以下代码:

Schema::table('questions', function(Blueprint $table) {
     $table->integer('category_id')->unsigned()->change();
});

1 个答案:

答案 0 :(得分:0)

使用unsignedInteger代替

Schema::table('questions', function(Blueprint $table) {
   $table->unsignedInteger('category_id')->change();
});