aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/fixtures/company.rb
blob: 18a197947a23aff7eb01376dd8a863cf62918681 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true
class Company < ActiveRecord::Base
  has_one :mascot
  self.sequence_name = :companies_nonstd_seq

  validates_presence_of :name
  def validate
    errors.add("rating", "rating should not be 2") if rating == 2
  end
end