UNPKG

node-pg-migrate

Version:

PostgreSQL database migration management tool for node.js

6 lines (5 loc) 326 B
import type { MigrationOptions } from '../../types'; import type { Reversible } from '../generalTypes'; export type RenameSchemaFn = (oldSchemaName: string, newSchemaName: string) => string; export type RenameSchema = Reversible<RenameSchemaFn>; export declare function renameSchema(mOptions: MigrationOptions): RenameSchema;