DatabaseMetaOptions
The DatabaseMetaOptions type configures the table and column names used for metadata storage in a database.
{
table?: string;
addressColumn?: string;
timestampColumn?: string;
}| Type | Description | |
|---|---|---|
table? | string | |
addressColumn? | string | |
timestampColumn? | string |
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