Method: Webhookdb::Replicator::Base#storable_columns

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

#storable_columnsArray<Webhookdb::DBAdapter::Column>

Denormalized columns, plus the enrichment column if supported. Does not include the data or external id columns, though perhaps it should.

Returns:



438
439
440
441
442
443
444
# File 'lib/webhookdb/replicator/base.rb', line 438

def storable_columns
  cols = self.denormalized_columns
  if (enr = self.enrichment_column)
    cols << enr
  end
  return cols
end