我有简单的Laravel迁移文件,用于指定复合主键:
// ...
public function up()
{
Schema::create('my_super_long_table_name', function($table)
{
$table->integer('column_1');
$table->integer('column_2');
$table->integer('column_3');
$table->primary(['column_1', 'column_2', 'column_3']);
});
}
// ...
当运行php artisan migrate
时会抛出此错误:
SQLSTATE[42000]: Syntax error or access violation: 1059 Identifier name 'my_super_long_table_name_column_1_column_2_column_3' is too long
答案 0 :(得分:37)
只需在创建时指定密钥名称(使用primary
的第二个参数)。
$table->primary(['column_1', 'column_2', 'column_3'], 'my_long_table_primary');
接下来,
如果您在修改后遇到类似You have an error in your SQL syntax ...
的错误,请确保您的数据库引擎没有使用保留字作为您的密钥名称。
例如,对于MySQL:http://dev.mysql.com/doc/refman/5.6/en/reserved-words.html
提示:primary
是保留的,所以不要使用它;)