UNPKG

node-pg-migrate

Version:

PostgreSQL database migration management tool for node.js

6 lines (5 loc) 332 B
import type { MigrationOptions } from '../../types'; import type { DropOptions, Name } from '../generalTypes'; export type DropSequenceOptions = DropOptions; export type DropSequence = (sequenceName: Name, dropOptions?: DropSequenceOptions) => string; export declare function dropSequence(mOptions: MigrationOptions): DropSequence;