UNPKG

node-pg-migrate-custom

Version:

Postgresql database migration management tool for node.js

6 lines (5 loc) 289 B
import { MigrationOptions } from '../types'; import { DropIndex, CreateIndex } from './indexesTypes'; export { CreateIndex, DropIndex }; export declare function dropIndex(mOptions: MigrationOptions): DropIndex; export declare function createIndex(mOptions: MigrationOptions): CreateIndex;