在Rails 文档中,我们找到以下示例:
class Physician < ActiveRecord::Base
has_many :appointments
has_many :patients, :through => :appointments
end
我只是好奇:是否可以通过命令行使用生成这个rails generate model
?
在Rails 文档中,我们找到以下示例:
class Physician < ActiveRecord::Base
has_many :appointments
has_many :patients, :through => :appointments
end
我只是好奇:是否可以通过命令行使用生成这个rails generate model
?