更改数据库表的默认主键时出现问题

发布于 2024-10-24 08:22:08 字数 610 浏览 14 评论 0原文

我正在使用 Ruby on Rails 3,我想将 SQL 数据库表的默认主键从 id 更改为 account_idaccount_id 语句和行为应与 id 相同(自动递增、唯一,...)。

在我的迁移文件中,我尝试了以下操作:

create_table :users, :id => false do |t|
  t.integer :account_id
  ...

  t.timestamps
end
add_index :users, :account_id, :primary => true

但是当我尝试编辑“users”表时,使用 MySQL Workbench ,我收到此错误:

'users': table is not editable because there is no primary key defined for the table

那么,如何正确设置“用户”表的主键?

I am using Ruby on Rails 3 and I would like to change the default primary key for a SQL database table from id to account_id. The account_id statement and behavior should be the same of id (auto-increment, unique, ...).

In my migration file I tryed the following:

create_table :users, :id => false do |t|
  t.integer :account_id
  ...

  t.timestamps
end
add_index :users, :account_id, :primary => true

But using MySQL Workbench, when I try to edit the 'users' table, I get this error:

'users': table is not editable because there is no primary key defined for the table

So, how can I set properly the primary key for my 'users' table?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文