In the Rails documentation, we find the following example:
class Physician < ActiveRecord::Base
has_many :appointments
has_many :patients, :through => :appointments
end
I'm just curious: is it possible to generate this via the command line using rails generate model?