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

    validates :name, presence: true
  end
end