aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/cat.rb
blob: 4c76ec86cf954de152d6b0542f1c4307664caac4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true
class Cat < ActiveRecord::Base
  self.abstract_class = true

  enum gender: [:female, :male]

  default_scope -> { where(is_vegetarian: false) }
end

class Lion < Cat
end