Files
turbovault-app/app/models/collection_game.rb
2026-03-28 19:24:29 -04:00

8 lines
205 B
Ruby

class CollectionGame < ApplicationRecord
belongs_to :collection
belongs_to :game
# Validations
validates :game_id, uniqueness: { scope: :collection_id, message: "already in this collection" }
end