openstreetmap-website/app/models/user_preference.rb
Andy Allan a41d500b9f Create an ApplicationRecord for models to inherit from
This is the default for Rails 5+, and also paves the way for
multiple database support.
2019-11-27 11:50:48 +01:00

21 lines
497 B
Ruby

# == Schema Information
#
# Table name: user_preferences
#
# user_id :bigint(8) not null, primary key
# k :string not null, primary key
# v :string not null
#
# Foreign Keys
#
# user_preferences_user_id_fkey (user_id => users.id)
#
class UserPreference < ApplicationRecord
self.primary_keys = "user_id", "k"
belongs_to :user
validates :user, :presence => true, :associated => true
validates :k, :v, :length => 1..255, :characters => true
end