rails--rails/activerecord/test/fixtures/post.rb

8 lines
165 B
Ruby

class Post < ActiveRecord::Base
belongs_to :author
has_many :comments, :order => "body"
has_and_belongs_to_many :categories
end
class SpecialPost < Post
end