Files
rails/activerecord/test/fixtures/post.rb
2005-04-10 17:24:56 +00:00

8 lines
147 B
Ruby

class Post < ActiveRecord::Base
belongs_to :author
has_many :comments
has_and_belongs_to_many :categories
end
class SpecialPost < Post
end