每个表的主键都已经被默认设置为id
看了官方文档后, 我用了这样的方法:
Schema::create('batchs', function (Blueprint $table) {
$table->increments('id');
$table->string('year', 4);
$table->integer('type');
$table->integer('state');
$table->timestamps();
$table->primary(['year', 'type']);
});
但是执行migrate的时候他会报错, Multiple Primary Key. 依照我蹩脚的英语理解, 应该是说有多个主键错误... 那如何才能把id的主键约定去掉呢?
自动增长列 必须是主键的一部分,