UNPKG

node-pg-migrate

Version:

PostgreSQL database migration management tool for node.js

13 lines (10 loc) 549 B
import { M as MigrationOptions } from '../../migrationOptions-BgtOZlq1.js'; import { N as Name, V as Value } from '../../generalTypes-BlKhVJMl.js'; import '../../logger.js'; import '../../utils/createTransformer.js'; interface AlterViewColumnOptions { default?: Value; } type AlterViewColumn = (viewName: Name, columnName: string, viewColumnOptions: AlterViewColumnOptions) => string; declare function alterViewColumn(mOptions: MigrationOptions): AlterViewColumn; export { type AlterViewColumn, type AlterViewColumnOptions, alterViewColumn };