mirror of
https://github.com/ryankazokas/turbovault-app.git
synced 2026-04-16 22:12:53 +00:00
8 lines
205 B
Ruby
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
|