Initial commit
This commit is contained in:
16
node_modules/drizzle-orm/migrator.d.cts
generated
vendored
Normal file
16
node_modules/drizzle-orm/migrator.d.cts
generated
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
export interface KitConfig {
|
||||
out: string;
|
||||
schema: string;
|
||||
}
|
||||
export interface MigrationConfig {
|
||||
migrationsFolder: string;
|
||||
migrationsTable?: string;
|
||||
migrationsSchema?: string;
|
||||
}
|
||||
export interface MigrationMeta {
|
||||
sql: string[];
|
||||
folderMillis: number;
|
||||
hash: string;
|
||||
bps: boolean;
|
||||
}
|
||||
export declare function readMigrationFiles(config: MigrationConfig): MigrationMeta[];
|
||||
Reference in New Issue
Block a user