UNPKG

@clickup/pg-mig

Version:

PostgreSQL schema migration tool with microsharding and clustering support

11 lines 594 B
import type { MigrateOptions } from "../cli"; import type { Registry } from "../internal/Registry"; /** * Prints the "code digest", of all migration version names on disk. Digest is a * string, and those strings can be compared lexicographically to determine * whether the code version is compatible with the DB version: if the DB's * digest is greater or equal to the code's digest, then they are compatible, so * the code can be deployed. */ export declare function actionDigest(_options: MigrateOptions, registry: Registry): Promise<boolean>; //# sourceMappingURL=actionDigest.d.ts.map