chore: add missing Payload migration and update cms-sync testing DB references
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

This commit is contained in:
2026-03-01 16:19:37 +01:00
parent cf3a96cead
commit 071302fe6b
4 changed files with 3835 additions and 3 deletions

View File

@@ -1,4 +1,5 @@
import * as migration_20260227_171023_crm_collections from "./20260227_171023_crm_collections";
import * as migration_20260301_151838 from "./20260301_151838";
export const migrations = [
{
@@ -6,4 +7,9 @@ export const migrations = [
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",
},
];