Files
klz-cables.com/.pnpm-store/v10/files/82/d9fef02f6de845a59f9da6046240516afc547903e5a3f19fdf74ccb89ccf2cc647031f53081ed0f060eeccc007c366c46d299486aa60b770302a9223951e13
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

64 lines
2.4 KiB
Plaintext

import { commitTransaction, createLocalReq, getMigrations, initTransaction, killTransaction, readMigrationFiles } from 'payload';
import { getTransaction } from './utilities/getTransaction.js';
import { migrationTableExists } from './utilities/migrationTableExists.js';
import { parseError } from './utilities/parseError.js';
export async function migrateDown() {
const { payload } = this;
const migrationFiles = await readMigrationFiles({
payload
});
const { existingMigrations, latestBatch } = await getMigrations({
payload
});
if (!existingMigrations?.length) {
payload.logger.info({
msg: 'No migrations to rollback.'
});
return;
}
payload.logger.info({
msg: `Rolling back batch ${latestBatch} consisting of ${existingMigrations.length} migration(s).`
});
const latestBatchMigrations = existingMigrations.filter(({ batch })=>batch === latestBatch);
for (const migration of latestBatchMigrations){
const migrationFile = migrationFiles.find((m)=>m.name === migration.name);
if (!migrationFile) {
throw new Error(`Migration ${migration.name} not found locally.`);
}
const start = Date.now();
const req = await createLocalReq({}, payload);
try {
payload.logger.info({
msg: `Migrating down: ${migrationFile.name}`
});
await initTransaction(req);
const db = await getTransaction(this, req);
await migrationFile.down({
db,
payload,
req
});
payload.logger.info({
msg: `Migrated down: ${migrationFile.name} (${Date.now() - start}ms)`
});
const tableExists = await migrationTableExists(this, db);
if (tableExists) {
await payload.delete({
id: migration.id,
collection: 'payload-migrations',
req
});
}
await commitTransaction(req);
} catch (err) {
await killTransaction(req);
payload.logger.error({
err,
msg: parseError(err, `Error migrating down ${migrationFile.name}. Rolling back.`)
});
process.exit(1);
}
}
}
//# sourceMappingURL=migrateDown.js.map