Synclets logoSynclets

DatabaseDataOptions

The DatabaseDataOptions type configures the table and column names used for data storage in a database.

{
  table?: string;
  addressColumn?: string;
  atomColumn?: string;
}
TypeDescription
table?string
addressColumn?string
atomColumn?string

These options allow you to customize the database schema used by database connectors (PGlite, SQLite3) for storing Atom data. You can specify custom table and column names to match existing schemas or naming conventions.

If not provided, connectors use sensible defaults (typically 'data' for the table name and standard column names for address parts and values).

Since

v0.0.0