instiki/vendor/rails/activerecord/test/models/pirate.rb

8 lines
217 B
Ruby
Raw Normal View History

class Pirate < ActiveRecord::Base
belongs_to :parrot
has_and_belongs_to_many :parrots
has_many :treasures, :as => :looter
has_many :treasure_estimates, :through => :treasures, :source => :price_estimates
end