about summary refs log tree commit diff stats
path: root/app/models/location.rb
blob: 57e193f49438973ebdf6332739bb95343bf34db4 (plain) (blame)
1
2
3
4
5
class Location < ApplicationRecord
  has_many :pokemon, dependent: :nullify

  validates :name, presence: true
end