UNPKG

node-pg-migrate

Version:

PostgreSQL database migration management tool for node.js

9 lines (8 loc) 381 B
import type { MigrationOptions } from '../../types'; import type { DropOptions, Name } from '../generalTypes'; export interface DropOperatorOptions extends DropOptions { left?: Name; right?: Name; } export type DropOperator = (operatorName: Name, dropOptions?: DropOperatorOptions) => string; export declare function dropOperator(mOptions: MigrationOptions): DropOperator;