# 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