UNPKG

node-pg-migrate

Version:

PostgreSQL database migration management tool for node.js

8 lines (7 loc) 364 B
import type { MigrationOptions } from '../../types'; import type { Name } from '../generalTypes'; export interface AlterTableOptions { levelSecurity: 'DISABLE' | 'ENABLE' | 'FORCE' | 'NO FORCE'; } export type AlterTable = (tableName: Name, tableOptions: AlterTableOptions) => string; export declare function alterTable(mOptions: MigrationOptions): AlterTable;