UNPKG

node-pg-migrate

Version:

PostgreSQL database migration management tool for node.js

5 lines (4 loc) 295 B
import type { MigrationOptions } from '../../types'; import type { Name, Type } from '../generalTypes'; export type SetTypeAttribute = (typeName: Name, attributeName: string, attributeType: Type) => string; export declare function setTypeAttribute(mOptions: MigrationOptions): SetTypeAttribute;