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