zrobiłem migrację z tej konfiguracji:laravel błąd 4 Migracja - tworzy dwa klucze podstawowego AUTO_INCREMENT pola
$table->increments('id');
$table->integer('user_id', 10)->unsigned(); // this is meant to be used as a foreign key
Po wykonaniu php rzemieślnik migrują zwraca błąd:
[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())
ja nie Podaj identyfikator użytkownika, aby był kluczem podstawowym auto_increment, ale Migration traktuje to jako tak.
Jak utworzyć klucz obcy w Migracji?
Jak radzisz sobie z kluczami obcymi? – jrenouard
nvm, znalazłem odpowiedź tutaj http://stackoverflow.com/questions/22077573/laravel-migration-will-not-add-foreign-key powinieneś użyć $ table-> integer ('app_group_id') -> length (10) -> unsigned(); w Laravel 4 – jrenouard