Я сделал переход с этой настройкой:
$table->increments('id');
$table->integer('user_id', 10)->unsigned(); // this is meant to be used as a foreign key
После выполнения миграции php artisan возвращается ошибка:
[Exception]
SQLSTATE[42000]: Syntax error or access violation: 1075 Incorrect table definition;
there can be only one auto column and it must be defined as a key (SQL: create table `transactions` (`id` int unsigned not null auto_increment primary key, `user_id` int unsigned not null auto_increment primary key) default character set utf8 collate utf8_unicode_ci) (Bindings: array ())
Я не указывал user_id как первичный ключ auto_increment, но Migration рассматривает его как таковой.
Как я могу сделать внешний ключ в Migrations?