summaryrefslogtreecommitdiff
path: root/app/models/pokedex_entry.rb
blob: 21924cea83f22319c2ca115a79045a39bbf04638 (plain)
1
2
3
4
5
6
7
class PokedexEntry < ApplicationRecord
  belongs_to :user
  belongs_to :run
  belongs_to :pokemon

  validates :recorded_at, presence: true
end