aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/test/fixtures/post.rb
blob: ce9abcc693de6a5b05086afd8e98a858156cd092 (plain) (tree)
1
2
3
4
5
6
7
8
                               

                      
                                     

   

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

class SpecialPost < Post
end