#
# 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
#
#
class UserPreference < ApplicationRecord
- self.primary_keys = "user_id", "k"
-
belongs_to :user
- validates :user, :presence => true, :associated => true
+ validates :user, :associated => true
validates :k, :v, :length => 1..255, :characters => true
end