在Rails documentation中,我们找到以下示例:
class Physician < ActiveRecord::Base
has_many :appointments
has_many :patients, :through => :appointments
end
我只是好奇:是否可以使用rails generate model
通过命令行生成此内容?
答案 0 :(得分:4)
不根据您从rails generate model
获得的使用情况消息。不过,您可以设置belongs_to
关系:
rails generate model photo title:string album:references
在app/models/photo.rb
中提供以下内容:
class Photo < ActiveRecord::Base
belongs_to :album
end