Rails:有没有办法通过命令行添加关联?

时间:2012-11-19 21:01:50

标签: ruby-on-rails command-line model

Rails documentation中,我们找到以下示例:

class Physician < ActiveRecord::Base
  has_many :appointments
  has_many :patients, :through => :appointments
end

我只是好奇:是否可以使用rails generate model通过命令行生成此内容?

1 个答案:

答案 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