API reference › @evolu/common › Sqlite › SqliteSchema
Defined in: packages/common/src/Sqlite.ts:520
Full schema metadata for a Sqlite database.
Includes table-column mappings and user-visible indexes.
Extends
InferType<typeofSqliteSchema>
Properties
indexes
indexes: readonly Readonly<{
name: string;
sql: string;
}>[];
Inherited from
tables
tables: Readonly<Record<string, ReadonlySet<string>>>;