mirror of
https://github.com/ryankazokas/turbovault-app.git
synced 2026-04-16 21:02:52 +00:00
9 lines
248 B
Ruby
9 lines
248 B
Ruby
class Platform < ApplicationRecord
|
|
# Associations
|
|
has_many :games, dependent: :restrict_with_error
|
|
has_many :items, dependent: :restrict_with_error
|
|
|
|
# Validations
|
|
validates :name, presence: true, uniqueness: { case_sensitive: false }
|
|
end
|