Rails 3:habtm 迁移,主键问题
我正在尝试为 habtm 关系设置迁移文件,但是当我运行迁移时,出现以下错误:
主键不允许出现在 has_and_belongs_to_many 连接表 (零件车辆)。
这是我的迁移文件(20110111035950_create_parts_vehicles.rb):
class CreatePartsVehiclesJoinTable < ActiveRecord::Migration
def self.up
create_table :parts_vehicles, :id => false do |t|
t.integer :part_id
t.integer :vehicle_id
end
end
def self.down
drop_table :parts_vehicles
end
end
文档 示例指出使用 :id => false
禁用生成主键,但我仍然收到错误。
I'm trying to setup a migration file for a habtm relationship, however when I run the migration I'm getting the following error:
Primary key is not allowed in a
has_and_belongs_to_many join table
(parts_vehicles).
Here is my migration file (20110111035950_create_parts_vehicles.rb):
class CreatePartsVehiclesJoinTable < ActiveRecord::Migration
def self.up
create_table :parts_vehicles, :id => false do |t|
t.integer :part_id
t.integer :vehicle_id
end
end
def self.down
drop_table :parts_vehicles
end
end
The documentation example states to use :id => false
to disable a primary key from being generated, but I'm still getting the error.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
1.) 您的班级名称应与您的迁移名称相同:
2.) 您迁移了吗?尝试删除您的数据库(rake db:drop)并重新迁移(rake db:migrate)
1.) You're class name should be the same as your migration name:
2.) Did you migrate? Try dropping your db (rake db:drop) and remigrating (rake db:migrate)