DatabaseMetaConnectorOptions
The DatabaseMetaConnectorConnectorOptions type configures the table and column names used for metadata storage in a database.
(
{
metaTable?: string;
addressColumn?: string;
timestampColumn?: string;
} &
MetaConnectorOptions<Depth>
)| Type | Description | |
|---|---|---|
metaTable? | string | The metaTable property specifies the table name for metadata storage. |
addressColumn? | string | The addressColumn property specifies the column name for address storage. |
timestampColumn? | string | The timestampColumn property specifies the column name for timestamp storage. |
These options allow you to customize the database schema used by database connectors (PGlite, SQLite3) for storing Timestamp metadata. You can specify custom table and column names to match existing schemas or naming conventions.
If not provided, connectors use sensible defaults (typically 'meta' for the table name and standard column names for address parts and timestamps).
Since
v0.0.0