UNPKG

node-pg-migrate

Version:

PostgreSQL database migration management tool for node.js

10 lines (9 loc) 305 B
import type { Logger } from './logger'; import type { ColumnDefinitions } from './operations/tables'; import type { Literal } from './utils/createTransformer'; export interface MigrationOptions { typeShorthands?: ColumnDefinitions; schemalize: Literal; literal: Literal; logger: Logger; }