aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/categorization.rb
blob: b3fc29fa15b43f0ca560f89c704b46f50464b925 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class Categorization < ActiveRecord::Base
  belongs_to :post
  belongs_to :category
  belongs_to :author
end

class SpecialCategorization < ActiveRecord::Base
  self.table_name = 'categorizations'

  default_scope where(:special => true)

  belongs_to :author
  belongs_to :category
end