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