UNPKG

node-pg-migrate

Version:

PostgreSQL database migration management tool for node.js

11 lines (8 loc) 495 B
import { M as MigrationOptions } from '../../migrationOptions-BgtOZlq1.js'; import { D as DropOptions, N as Name } from '../../generalTypes-BlKhVJMl.js'; import '../../logger.js'; import '../../utils/createTransformer.js'; type DropSequenceOptions = DropOptions; type DropSequence = (sequenceName: Name, dropOptions?: DropSequenceOptions) => string; declare function dropSequence(mOptions: MigrationOptions): DropSequence; export { type DropSequence, type DropSequenceOptions, dropSequence };