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