UNPKG

node-pg-migrate

Version:

PostgreSQL database migration management tool for node.js

6 lines (5 loc) 414 B
import type { MigrationOptions } from '../../migrationOptions'; import type { Name, Reversible } from '../generalTypes'; export type RenameOperatorFamilyFn = (oldOperatorFamilyName: Name, indexMethod: Name, newOperatorFamilyName: Name) => string; export type RenameOperatorFamily = Reversible<RenameOperatorFamilyFn>; export declare function renameOperatorFamily(mOptions: MigrationOptions): RenameOperatorFamily;