node-pg-migrate
Version:
PostgreSQL database migration management tool for node.js
5 lines (4 loc) • 306 B
TypeScript
import type { MigrationOptions } from '../../migrationOptions';
import type { Name, Type } from '../generalTypes';
export type SetTypeAttribute = (typeName: Name, attributeName: string, attributeType: Type) => string;
export declare function setTypeAttribute(mOptions: MigrationOptions): SetTypeAttribute;