Files
rails/activerecord/test/fixtures/comment.rb

8 lines
138 B
Ruby

class Comment < ActiveRecord::Base
belongs_to :post
end
class SpecialComment < Comment; end;
class VerySpecialComment < Comment; end;