aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/test/models/tag.rb
blob: a49affaf3f87ff02e2b8173d3cd4e07f1055ac4f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                              
                    
                                            
                   
 
                                                                                              
   



                          
                                                                             
   
class Tag < ActiveRecord::Base
  has_many :taggings
  has_many :taggables, :through => :taggings
  has_one  :tagging

  has_many :tagged_posts, :through => :taggings, :source => "taggable", :source_type => "Post"
end

class OrderedTag < Tag
  self.table_name = "tags"

  has_many :taggings, -> { order("taggings.id DESC") }, foreign_key: "tag_id"
end