aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/bird.rb
blob: 20af7c6122f7157977563f0e64f6ed38dab18b20 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true

class Bird < ActiveRecord::Base
  belongs_to :pirate
  validates_presence_of :name

  accepts_nested_attributes_for :pirate

  before_save do
    # force materialize_transactions
    self.class.connection.materialize_transactions
  end

  attr_accessor :cancel_save_from_callback
  before_save :cancel_save_callback_method, if: :cancel_save_from_callback
  def cancel_save_callback_method
    throw(:abort)
  end

  attr_accessor :total_count, :enable_count
  after_initialize do
    self.total_count = Bird.count if enable_count
  end
end