From 43b81d01d0a175c76fea1cdad2484ceb64ca659b Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Fri, 18 Jan 2008 07:27:03 +0000 Subject: move assets and models git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8657 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activerecord/test/models/parrot.rb | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 activerecord/test/models/parrot.rb (limited to 'activerecord/test/models/parrot.rb') diff --git a/activerecord/test/models/parrot.rb b/activerecord/test/models/parrot.rb new file mode 100644 index 0000000000..65191c1aa5 --- /dev/null +++ b/activerecord/test/models/parrot.rb @@ -0,0 +1,13 @@ +class Parrot < ActiveRecord::Base + set_inheritance_column :parrot_sti_class + has_and_belongs_to_many :pirates + has_and_belongs_to_many :treasures + has_many :loots, :as => :looter +end + +class LiveParrot < Parrot +end + +class DeadParrot < Parrot + belongs_to :killer, :class_name => 'Pirate' +end -- cgit v1.2.3