aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures/comment.rb
blob: 982cbc6a7acf29672bb2410829af7f13408f2b54 (plain) (blame)
1
2
3
4
5
6
7
class Comment < ActiveRecord::Base
  belongs_to :post
end

class SpecialComment < Comment; end;

class VerySpecialComment < Comment; end;