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

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