Files
klz-cables.com/.pnpm-store/v10/files/1f/dac4b19f13b65f3adf3c9bc6555a43b5504afe5f1453a10960dfd22aebfba92aa4c64130e95299d9aff1f56270185bf5e4363180cece5e4556f12046a7f49c
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

23 lines
664 B
Plaintext

import type { Payload, PayloadRequest } from 'payload';
type Args = {
debug?: boolean;
payload: Payload;
req?: Partial<PayloadRequest>;
};
/**
* Moves upload and relationship columns from the join table and into the tables while moving data
* This is done in the following order:
* ADD COLUMNs
* -- manipulate data to move relationships to new columns
* ADD CONSTRAINTs
* NOT NULLs
* DROP TABLEs
* DROP CONSTRAINTs
* DROP COLUMNs
* @param debug
* @param payload
* @param req
*/
export declare const migratePostgresV2toV3: ({ debug, payload, req }: Args) => Promise<void>;
export {};
//# sourceMappingURL=index.d.ts.map