Spaces:
Sleeping
Sleeping
File size: 458 Bytes
6491ad4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | import type { DrizzleSqliteDODatabase } from "./driver.cjs";
interface MigrationConfig {
journal: {
entries: {
idx: number;
when: number;
tag: string;
breakpoints: boolean;
}[];
};
migrations: Record<string, string>;
}
export declare function migrate<TSchema extends Record<string, unknown>>(db: DrizzleSqliteDODatabase<TSchema>, config: MigrationConfig): Promise<void>;
export {};
|