Method: Webhookdb::Replicator::Base#enrichment_column

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

#enrichment_columnWebhookdb::DBAdapter::Column?

Column used to store enrichments. Return nil if the service does not use enrichments.



418
419
420
421
# File 'lib/webhookdb/replicator/base.rb', line 418

def enrichment_column
  return nil unless self._store_enrichment_body?
  return Webhookdb::DBAdapter::Column.new(name: :enrichment, type: OBJECT, nullable: true)
end