# File lib/big_record/base.rb, line 222
    def update_bigrecord
      timestamp = self.respond_to?(:updated_at) ? self.updated_at.to_bigrecord_timestamp : Time.now.to_bigrecord_timestamp

      data = clone_in_persistence_format

      connection.update(self.class.table_name, id, data, timestamp)
    end