@launchql/migrate
Version:
PostgreSQL Migration Tools
17 lines (16 loc) • 444 B
TypeScript
export interface SqitchRow {
deploy: string;
revert?: string;
verify?: string;
content: string;
deps?: string[];
name?: string;
}
interface WriteOptions {
outdir: string;
name: string;
replacer: (str: string) => string;
}
export declare const writeSqitchFiles: (rows: SqitchRow[], opts: WriteOptions) => void;
export declare const writeSqitchPlan: (rows: SqitchRow[], opts: WriteOptions) => void;
export {};