mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
![Ryuta Kamizono](/assets/img/avatar_default.png)
Otherwise `save` method would raise the `ReadOnlyError` against `BEGIN` and `ROLLBACK` queries.
19 lines
448 B
Ruby
19 lines
448 B
Ruby
# 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
|
|
end
|