ぼざクリ タグ広場 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.
 
 
 
 
 
 

8 lines
189 B

  1. class Setting < ApplicationRecord
  2. belongs_to :user
  3. validates :user_id, presence: true
  4. validates :key, presence: true, length: { maximum: 255 }
  5. validates :value, presence: true
  6. end