mirror of
https://github.com/ryankazokas/turbovault-app.git
synced 2026-04-16 22:12:53 +00:00
12 lines
260 B
Ruby
12 lines
260 B
Ruby
# typed: true
|
|
|
|
class Genre < ApplicationRecord
|
|
extend T::Sig
|
|
# Associations
|
|
has_many :game_genres, dependent: :destroy
|
|
has_many :games, through: :game_genres
|
|
|
|
# Validations
|
|
validates :name, presence: true, uniqueness: { case_sensitive: false }
|
|
end
|