EventStore.Config.column_data_type

You're seeing just the function column_data_type, go back to EventStore.Config module for more information.
Link to this function

column_data_type(event_store, config)

View Source

Get the data type used to store event data and metadata.

Supported data types are:

  • "bytea" - Allows storage of binary strings.
  • "jsonb" - Native JSON type, data is stored in a decomposed binary format that makes it slightly slower to input due to added conversion overhead, but significantly faster to process, since no reparsing is needed.