node-pg-migrate
Version:
PostgreSQL database migration management tool for node.js
6 lines (5 loc) • 326 B
TypeScript
import type { MigrationOptions } from '../../types';
import type { IfExistsOption } from '../generalTypes';
export type DropCastOptions = IfExistsOption;
export type DropCast = (fromType: string, toType: string, dropOptions?: DropCastOptions) => string;
export declare function dropCast(mOptions: MigrationOptions): DropCast;