From 6318dc417529f4d4d0f90566ef98bc6702e553c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl-Gerhard=20Lindesva=CC=88rd?= Date: Mon, 17 Feb 2025 21:58:18 +0100 Subject: [PATCH] fix(db): use correct env.. --- packages/db/code-migrations/3-init-ch.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/db/code-migrations/3-init-ch.ts b/packages/db/code-migrations/3-init-ch.ts index ca12a217..64e5146e 100644 --- a/packages/db/code-migrations/3-init-ch.ts +++ b/packages/db/code-migrations/3-init-ch.ts @@ -25,7 +25,7 @@ export async function up() { 'profile_aliases_distributed', ); - const isSelfHosting = !!process.env.SELF_HOSTING; + const isSelfHosting = !!process.env.SELF_HOSTED; const isClustered = !isSelfHosting; const isSelfHostingPostCluster =