node-pg-migrate
Version:
PostgreSQL database migration management tool for node.js
6 lines (5 loc) • 345 B
TypeScript
import type { MigrationOptions } from '../../types';
import type { DropOptions, Name } from '../generalTypes';
export type DropTriggerOptions = DropOptions;
export type DropTrigger = (tableName: Name, triggerName: string, dropOptions?: DropTriggerOptions) => string;
export declare function dropTrigger(mOptions: MigrationOptions): DropTrigger;