UNPKG

node-pg-migrate

Version:

PostgreSQL database migration management tool for node.js

9 lines (8 loc) 421 B
import type { MigrationOptions } from '../../types'; import type { IfNotExistsOption, Name, Value } from '../generalTypes'; export interface AddTypeValueOptions extends IfNotExistsOption { before?: string; after?: string; } export type AddTypeValue = (typeName: Name, value: Value, typeValueOptions?: AddTypeValueOptions) => string; export declare function addTypeValue(mOptions: MigrationOptions): AddTypeValue;