X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/2e44f9ccf3ac8c54c407d74422247b5a721b269c..25e1145c32c34318edab7a5ce0a059034703ccb0:/app/models/user_preference.rb?ds=sidebyside diff --git a/app/models/user_preference.rb b/app/models/user_preference.rb index 2a73f2233..5b91bbda9 100644 --- a/app/models/user_preference.rb +++ b/app/models/user_preference.rb @@ -1,13 +1,19 @@ -class UserPreference < ActiveRecord::Base - belongs_to :user +# == 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) +# - # Turn this Node in to an XML Node without the wrapper. - def to_xml_node - el1 = XML::Node.new 'preference' - el1['k'] = self.k - el1['v'] = self.v - - return el1 - end +class UserPreference < ApplicationRecord + belongs_to :user + validates :user, :associated => true + validates :k, :v, :length => 1..255, :characters => true end