我想知道如何在Rails中正确地进行关联。首先,我创建了一个城市模型和一个组织。现在我希望组织有一个城市...这是通过添加has_many
和has_one
关联来完成的。之后我运行rake db:migrate
。但不知何故,它不会在我的数据库模型中创建字段city
或city_id
。我自己必须这样做吗? rails现在不应该在数据库中创建外键约束吗?
要查看它是否有效,我正在使用rails c
并输入Organisation
答案如下:
=> Organisation(id: integer, name: string, description: string, url: string, created_at: datetime, updated_at: datetime)
请原谅我的愚蠢问题......我是Rails的初学者,一切都还是很陌生。
谢谢!
城市:
class City < ActiveRecord::Base
has_many :organisations
end
组织:
class Organisation < ActiveRecord::Base
has_one :city
end
创建城市:
class CreateCities < ActiveRecord::Migration
def change
create_table :cities do |t|
t.string :name
t.string :country
t.timestamps
end
end
end
创建组织:
class CreateOrganisations < ActiveRecord::Migration
def change
create_table :organisations do |t|
t.string :name
t.string :description
t.string :url
t.timestamps
end
end
end
答案 0 :(得分:19)
这有几个问题。
您需要在belongs_to
或has_many
关联的另一端指定has_one
。定义belongs_to
关联的模型是外键所属的位置。
因此,如果组织has_one :city
,则城市需要belongs_to :organization
。或者,如果是城市has_one :organization
,则组织需要belongs_to :city
。
查看您的设置,看起来您想要belongs_to
模型中的City
定义。
迁移不是基于模型定义构建的。相反,它们是从db/migrations
文件夹构建的。运行rails g model
命令(或rails g migration
)时会创建迁移。为了获得外键,您需要告诉生成器创建它。
rails generate model organization name:string description:string url:string city_id:integer
或者
rails generate model city name:string description:string url:string organization_id:integer