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

11 lines
216 B

  1. class WikiAsset < ApplicationRecord
  2. self.primary_key = :wiki_page_id, :no
  3. belongs_to :wiki_page
  4. belongs_to :created_by_user, class_name: 'User'
  5. has_one_attached :file
  6. validates :file, presence: true
  7. end