]> git.openstreetmap.org Git - rails.git/blob - app/models/node_tag.rb
Merge branch 'notes'
[rails.git] / app / models / node_tag.rb
1 class NodeTag < ActiveRecord::Base
2   self.table_name = "current_node_tags"
3   self.primary_keys = "node_id", "k"
4
5   belongs_to :node
6   
7   validates_presence_of :node
8   validates_length_of :k, :maximum => 255, :allow_blank => true
9   validates_uniqueness_of :k, :scope => :node_id
10   validates_length_of :v, :maximum => 255, :allow_blank => true
11 end