首页 > 解决方案 > Mysql2::Error:只能有一个自动列,并且必须将其定义为键

问题描述

尝试启动并运行 Rails 应用程序。我从同事以 schema.rb 给出的下表定义中收到此错误。

ActiveRecord::StatementInvalid: Mysql2::Error: Incorrect table definition; there can be only one auto column and it must be defined as a key 

表定义:

  create_table "wv latest", id: false, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", force: :cascade do |t|
    t.integer "id", null: false, auto_increment: true
    t.string "cid", limit: 10
    t.integer "visit_id"
    t.string "cfname", limit: 20
    t.string "clname", limit: 25
  end

当我删除

auto_increment: true

错误消失。为什么会发生这种情况,为什么架构在我的设置中不起作用?

标签: mysqlruby-on-railsschema

解决方案


错误消息告诉您只有列可以自动递增,并且该列也必须是主键。因此,尝试将id列设为主键:

create_table "wv latest", id: false, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", force: :cascade do |t|
    t.integer "id", null: false, auto_increment: true, primary_key: true
    t.string "cid", limit: 10
    t.integer "visit_id"
    t.string "cfname", limit: 20
    t.string "clname", limit: 25
end

推荐阅读