1 # frozen_string_literal: true
 
   3 # == Schema Information
 
   5 # Table name: current_node_tags
 
   7 #  node_id :bigint           not null, primary key
 
   8 #  k       :string           default(""), not null, primary key
 
   9 #  v       :string           default(""), not null
 
  13 #  current_node_tags_id_fkey  (node_id => current_nodes.id)
 
  16 class NodeTag < ApplicationRecord
 
  17   self.table_name = "current_node_tags"
 
  21   validates :node, :associated => true
 
  22   validates :k, :v, :allow_blank => true, :length => { :maximum => 255 }, :characters => true
 
  23   validates :k, :uniqueness => { :scope => :node_id }