2005-12-11 13:06:51 -05:00
|
|
|
class Categorization < ActiveRecord::Base
|
|
|
|
belongs_to :post
|
|
|
|
belongs_to :category
|
2009-08-13 15:18:43 -04:00
|
|
|
belongs_to :named_category, :class_name => 'Category', :foreign_key => :named_category_name, :primary_key => :name
|
2005-12-11 13:06:51 -05:00
|
|
|
belongs_to :author
|
2010-10-31 07:21:28 -04:00
|
|
|
|
2010-10-14 08:16:47 -04:00
|
|
|
has_many :post_taggings, :through => :author, :source => :taggings
|
2011-03-02 16:24:56 -05:00
|
|
|
|
2010-12-15 18:27:15 -05:00
|
|
|
belongs_to :author_using_custom_pk, :class_name => 'Author', :foreign_key => :author_id, :primary_key => :author_address_extra_id
|
|
|
|
has_many :authors_using_custom_pk, :class_name => 'Author', :foreign_key => :id, :primary_key => :category_id
|
2010-12-12 12:03:41 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
class SpecialCategorization < ActiveRecord::Base
|
|
|
|
self.table_name = 'categorizations'
|
|
|
|
|
|
|
|
default_scope where(:special => true)
|
|
|
|
|
|
|
|
belongs_to :author
|
|
|
|
belongs_to :category
|
2010-10-14 08:16:47 -04:00
|
|
|
end
|