@clickup/pg-mig
Version:
PostgreSQL schema migration tool with microsharding and clustering support
11 lines • 462 B
TypeScript
/**
* Migration file may have variables in it to tune behavior of the migration.
* Format is: "-- $var_name=var_value" on any line of the file.
*/
declare const VALID_VARS: readonly ["$delay", "$parallelism_global", "$parallelism_per_host", "$run_alone"];
export type Vars = {
[k in (typeof VALID_VARS)[number]]?: number;
};
export declare function extractVars(fileName: string, content: string): Vars;
export {};
//# sourceMappingURL=extractVars.d.ts.map