Files
turbovault-app/app/models/collection_game.rb
2026-03-29 02:37:49 -04:00

11 lines
236 B
Ruby

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