aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures/post.rb
blob: 3c0ef927dc02c05ae63714826a1a94db6867b6c5 (plain) (blame)
1
2
3
4
5
6
class Post < ActiveRecord::Base
  belongs_to :author
  has_many   :comments
end

class SpecialPost < Post; end