image_tag.rb 171 Bytes EditWeb IDE 1 2 3 4 5 6 7 class ImageTag < ApplicationRecord belongs_to :image belongs_to :tag # Ensure uniqueness of tag per image validates :tag_id, uniqueness: { scope: :image_id } end