UNPKG

prisma-migration-migrator

Version:

Replace Prisma as the migration engine with Knex, while keeping it as ORM

14 lines (13 loc) 297 B
export type MigratorParameters = { prismaFolderPath?: string; knexfilePath?: string; knexMigrationsDir?: string; silent?: boolean; }; export type MigrationData = { name: string; baseSqlPath: string; finalMigrationPath: string; sql: string; checksum: string; };