]> git.openstreetmap.org Git - rails.git/blob - app/models/changeset_tag.rb
Add frozen_string_literal comments to ruby files
[rails.git] / app / models / changeset_tag.rb
1 # frozen_string_literal: true
2
3 # == Schema Information
4 #
5 # Table name: changeset_tags
6 #
7 #  changeset_id :bigint           not null, primary key
8 #  k            :string           default(""), not null, primary key
9 #  v            :string           default(""), not null
10 #
11 # Foreign Keys
12 #
13 #  changeset_tags_id_fkey  (changeset_id => changesets.id)
14 #
15
16 class ChangesetTag < ApplicationRecord
17   belongs_to :changeset
18
19   validates :changeset, :associated => true
20   validates :k, :v, :allow_blank => true, :length => { :maximum => 255 }, :characters => true
21   validates :k, :uniqueness => { :scope => :changeset_id }
22 end