mirror of
https://github.com/ryankazokas/turbovault-app.git
synced 2026-04-16 22:12:53 +00:00
11 lines
217 B
Ruby
11 lines
217 B
Ruby
# typed: true
|
|
|
|
class GameGenre < ApplicationRecord
|
|
extend T::Sig
|
|
belongs_to :game
|
|
belongs_to :genre
|
|
|
|
# Validations
|
|
validates :game_id, uniqueness: { scope: :genre_id, message: "already has this genre" }
|
|
end
|