]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/user_preference.rb
Add links to the ToU and include them in signup
[rails.git] / app / models / user_preference.rb
index 0533ccad2d83857a967feefdb2703b1e19c145ac..3963bd02aeb47ade7f6b47faf15293412b63c604 100644 (file)
@@ -1,10 +1,23 @@
+# == Schema Information
+#
+# Table name: user_preferences
+#
+#  user_id :integer          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 < ActiveRecord::Base
   self.primary_keys = "user_id", "k"
 
   belongs_to :user
 
-  validates_length_of :k, :within => 1..255
-  validates_length_of :v, :within => 1..255
+  validates :user, :presence => true, :associated => true
+  validates :k, :v, :length => 1..255, :characters => true
 
   # Turn this Node in to an XML Node without the <osm> wrapper.
   def to_xml_node