Skip to content

SqliteMigration

Defined in: packages/core/src/store/migrations.ts:27

Single versioned migration. up statements run in order, in one transaction.

description: string

Defined in: packages/core/src/store/migrations.ts:29


probe: (inspect) => boolean

Defined in: packages/core/src/store/migrations.ts:36

Returns true when the migration’s effect is already visible on the live schema. Used once, only for databases with no schema_version rows yet, to infer a starting baseline without re-running DDL that would fail.

SchemaInspector

boolean


up: readonly string[]

Defined in: packages/core/src/store/migrations.ts:30


version: number

Defined in: packages/core/src/store/migrations.ts:28