summaryrefslogtreecommitdiff
path: root/app/models/pokemon.rb
blob: 293281af1bc63e6bee75844695887a8329a1fd13 (plain)
1
2
3
4
5
class Pokemon < ApplicationRecord
  has_many :pokedex_entries, dependent: :restrict_with_error

  validates :pokedex_num, :name, presence: true
end