UNPKG

node-pg-migrate

Version:

PostgreSQL database migration management tool for node.js

6 lines (5 loc) 359 B
import type { MigrationOptions } from '../../types'; import type { DropOptions, Name } from '../generalTypes'; export type DropConstraintOptions = DropOptions; export type DropConstraint = (tableName: Name, constraintName: string, options?: DropConstraintOptions) => string; export declare function dropConstraint(mOptions: MigrationOptions): DropConstraint;