node-pg-migrate
Version:
PostgreSQL database migration management tool for node.js
8 lines (7 loc) • 377 B
TypeScript
import type { MigrationOptions } from '../../types';
import type { Name, Value } from '../generalTypes';
export interface AlterViewColumnOptions {
default?: Value;
}
export type AlterViewColumn = (viewName: Name, columnName: string, viewColumnOptions: AlterViewColumnOptions) => string;
export declare function alterViewColumn(mOptions: MigrationOptions): AlterViewColumn;