Files
mintel.me/apps/web/src/migrations/index.ts
Marc Mintel 071302fe6b
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 11s
Build & Deploy / 🧪 QA (push) Successful in 8m14s
Build & Deploy / 🏗️ Build (push) Successful in 13m1s
Build & Deploy / 🚀 Deploy (push) Successful in 28s
Build & Deploy / 🧪 Post-Deploy Verification (push) Failing after 2m24s
Build & Deploy / 🔔 Notify (push) Successful in 1s
chore: add missing Payload migration and update cms-sync testing DB references
2026-03-01 16:19:37 +01:00

16 lines
476 B
TypeScript

import * as migration_20260227_171023_crm_collections from "./20260227_171023_crm_collections";
import * as migration_20260301_151838 from "./20260301_151838";
export const migrations = [
{
up: migration_20260227_171023_crm_collections.up,
down: migration_20260227_171023_crm_collections.down,
name: "20260227_171023_crm_collections",
},
{
up: migration_20260301_151838.up,
down: migration_20260301_151838.down,
name: "20260301_151838",
},
];