]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/user_preference.rb
Merge remote-tracking branch 'upstream/pull/5731'
[rails.git] / app / models / user_preference.rb
index 741aa335aca9c2f2375cb09bbe0093912e07115e..35412c9e783afb83cc8e6da0b8dc8243610a4ae9 100644 (file)
@@ -2,7 +2,7 @@
 #
 # Table name: user_preferences
 #
-#  user_id :bigint(8)        not null, primary key
+#  user_id :bigint           not null, primary key
 #  k       :string           not null, primary key
 #  v       :string           not null
 #
@@ -12,8 +12,6 @@
 #
 
 class UserPreference < ApplicationRecord
-  self.primary_keys = "user_id", "k"
-
   belongs_to :user
 
   validates :user, :associated => true