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