Emilias-Site/app/models/image.rb

8 lines
178 B
Ruby

class Image < ApplicationRecord
has_one_attached :file
has_many :taggings, as: :taggable
has_many :tags, through: :taggings
validates :title, :file, presence: true
end