laravel5.1如何修改表的主键

每个表的主键都已经被默认设置为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的主键约定去掉呢?

阅读 5.1k
1 个回答
$table->increments('id');

递增 ID(主键),相当于「UNSIGNED INTEGER」型态。

自动增长列 必须是主键的一部分,

约定去掉的话只要 `$table->integer('id');`就可以
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题