node-pg-migrate
Version:
PostgreSQL database migration management tool for node.js
6 lines (5 loc) • 382 B
TypeScript
import type { MigrationOptions } from '../../types';
import type { IfExistsOption, Name } from '../generalTypes';
export type DropTypeAttributeOptions = IfExistsOption;
export type DropTypeAttribute = (typeName: Name, attributeName: string, dropOptions?: DropTypeAttributeOptions) => string;
export declare function dropTypeAttribute(mOptions: MigrationOptions): DropTypeAttribute;