ぼざクリタグ広場 https://hub.nizika.monster
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

9 lines
292 B

  1. class WikiRevisionLine < ApplicationRecord
  2. belongs_to :wiki_revision
  3. belongs_to :wiki_line
  4. validates :position, presence: true,
  5. numericality: { only_integer: true, greater_than_or_equal_to: 0 }
  6. validates :position, uniqueness: { scope: :wiki_revision_id }
  7. end