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