Method: Webhookdb::Replicator::Base#_timestamp_column_name

Defined in:
lib/webhookdb/replicator/base.rb

#_timestamp_column_nameSymbol

This method is abstract.

The name of the timestamp column in the schema. This column is used primarily for conditional upserts (ie to know if a row has changed), but also as a general way of auditing changes.

Returns:

  • (Symbol)

Raises:

  • (NotImplementedError)


460
461
462
# File 'lib/webhookdb/replicator/base.rb', line 460

def _timestamp_column_name
  raise NotImplementedError
end