method

mutations_from_database

mutations_from_database()
private

No documentation available.

# File activemodel/lib/active_model/dirty.rb, line 254
      def mutations_from_database
        @mutations_from_database ||= if defined?(@attributes)
          ActiveModel::AttributeMutationTracker.new(@attributes)
        else
          ActiveModel::ForcedMutationTracker.new(self)
        end
      end