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