UNPKG

node-pg-migrate

Version:

PostgreSQL database migration management tool for node.js

6 lines (5 loc) 314 B
import type { MigrationOptions } from '../../types'; import type { DropOptions, Name } from '../generalTypes'; export type DropTableOptions = DropOptions; export type DropTable = (tableName: Name, dropOptions?: DropTableOptions) => string; export declare function dropTable(mOptions: MigrationOptions): DropTable;