node-pg-migrate-custom
Version:
Postgresql database migration management tool for node.js
6 lines (5 loc) • 324 B
TypeScript
import { MigrationOptions } from '../types';
import { CreateExtension, DropExtension } from './extensionsTypes';
export { CreateExtension, DropExtension };
export declare function dropExtension(mOptions: MigrationOptions): DropExtension;
export declare function createExtension(mOptions: MigrationOptions): CreateExtension;