mirror of
https://github.com/ryankazokas/turbovault-app.git
synced 2026-04-16 21:02:52 +00:00
11 lines
236 B
Ruby
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
|