Method: Webhookdb::Replicator::Base#_remote_key_column

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

#_remote_key_columnWebhookdb::Replicator::Column

This method is abstract.

Each integration needs a single remote key, like the Shopify order id for shopify orders, or sid for Twilio resources. This column must be unique for the table, like a primary key.

Returns:

Raises:

  • (NotImplementedError)


469
470
471
# File 'lib/webhookdb/replicator/base.rb', line 469

def _remote_key_column
  raise NotImplementedError
end