node-pg-migrate
Version:
PostgreSQL database migration management tool for node.js
14 lines (11 loc) • 589 B
TypeScript
import { M as MigrationOptions } from '../../migrationOptions-BgtOZlq1.js';
import { N as Name, V as Value, a as IfNotExistsOption } from '../../generalTypes-BlKhVJMl.js';
import '../../logger.js';
import '../../utils/createTransformer.js';
interface AddTypeValueOptions extends IfNotExistsOption {
before?: string;
after?: string;
}
type AddTypeValue = (typeName: Name, value: Value, typeValueOptions?: AddTypeValueOptions) => string;
declare function addTypeValue(mOptions: MigrationOptions): AddTypeValue;
export { type AddTypeValue, type AddTypeValueOptions, addTypeValue };