]> git.openstreetmap.org Git - rails.git/blob - app/models/way_tag.rb
Fix new rubocop warnings
[rails.git] / app / models / way_tag.rb
1 # == Schema Information
2 #
3 # Table name: current_way_tags
4 #
5 #  way_id :integer          not null, primary key
6 #  k      :string           default(""), not null, primary key
7 #  v      :string           default(""), not null
8 #
9 # Foreign Keys
10 #
11 #  current_way_tags_id_fkey  (way_id => current_ways.id)
12 #
13
14 class WayTag < ActiveRecord::Base
15   self.table_name = "current_way_tags"
16   self.primary_keys = "way_id", "k"
17
18   belongs_to :way
19
20   validates :way, :presence => true, :associated => true
21   validates :k, :v, :allow_blank => true, :length => { :maximum => 255 }
22   validates :k, :uniqueness => { :scope => :way_id }
23 end