]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/diary_entry.rb
Add explicit primary key declaration for changeset subscriptions
[rails.git] / app / models / diary_entry.rb
index 07bb60a1096e17f725ac5b8e1e968e012772c7f2..143ddc1dc0949ad74b451501ae7a20ec8ec38273 100644 (file)
@@ -3,8 +3,9 @@ class DiaryEntry < ActiveRecord::Base
   belongs_to :language, :foreign_key => "language_code"
 
   has_many :comments, -> { order(:id).preload(:user) }, :class_name => "DiaryComment"
-  has_many :visible_comments, -> { joins(:user).where(:visible => true, :users => { :status => %w(active confirmed) }).order(:id) }, :class_name => "DiaryComment"
-  has_and_belongs_to_many :subscribers, :class_name => "User", :join_table => "diary_entries_subscribers", :association_foreign_key => "subscriber_id"
+  has_many :visible_comments, -> { joins(:user).where(:visible => true, :users => { :status => %w[active confirmed] }).order(:id) }, :class_name => "DiaryComment"
+  has_many :subscriptions, :class_name => "DiaryEntrySubscription"
+  has_many :subscribers, :through => :subscriptions, :source => :user
 
   scope :visible, -> { where(:visible => true) }