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
16 lines
476 B
TypeScript
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",
|
|
},
|
|
];
|