【发布时间】:2018-12-18 07:58:34
【问题描述】:
这是我的迁移。我希望 id 字段自动递增但不是主要字段。可能吗?此迁移引发异常Syntax error or access violation: 1075 Incorrect table definition; there can be only one auto column and it must be defined as a key
Schema::create('tests', function (Blueprint $table) {
$table->increments('id');
$table->unsignedInteger('project_id');
$table->unsignedInteger('model_id');
$table->timestamps();
$table->dropPrimary('id');
$table->foreign('project_id')
->references('id')
->on('projects')
->onDelete('cascade');
$table->primary(['project_id', 'model_id']);
});
【问题讨论】:
标签: laravel laravel-5.7