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