node-pg-migrate
Version:
PostgreSQL database migration management tool for node.js
6 lines (5 loc) • 328 B
TypeScript
import type { MigrationOptions } from '../../types';
import type { Name } from '../generalTypes';
import type { PolicyOptions } from './shared';
export type AlterPolicy = (tableName: Name, policyName: string, policyOptions: PolicyOptions) => string;
export declare function alterPolicy(mOptions: MigrationOptions): AlterPolicy;