Изменить тип столбца Laravel 5 - PullRequest
0 голосов
/ 17 мая 2018

Почему я получил следующие ошибки

 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 голосов
/ 17 мая 2018

Используйте unsignedInteger вместо

Schema::table('questions', function(Blueprint $table) {
   $table->unsignedInteger('category_id')->change();
});
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...