From 09ac8e32749510fb9d67019692b393b2e1669843 Mon Sep 17 00:00:00 2001 From: Charles Bochet Date: Fri, 30 Aug 2024 01:13:13 +0200 Subject: [PATCH] Add instructions to migrate to 0.24 version --- .../developers/self-hosting/upgrade-guide.mdx | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/packages/twenty-website/src/content/developers/self-hosting/upgrade-guide.mdx b/packages/twenty-website/src/content/developers/self-hosting/upgrade-guide.mdx index cd121f735..d22c3384f 100644 --- a/packages/twenty-website/src/content/developers/self-hosting/upgrade-guide.mdx +++ b/packages/twenty-website/src/content/developers/self-hosting/upgrade-guide.mdx @@ -40,11 +40,22 @@ Run the following commands: ``` yarn database:migrate:prod -yarn command:prod workspace:sync-metadata -f yarn command:prod upgrade-0.23 ``` The `yarn database:migrate:prod` command will apply the migrations to the Database. The `yarn command:prod upgrade-0.23` takes care of the data migration, including transferring activities to tasks/notes. +## v0.23.0 to v0.24.0 + +Run the following commands: + +``` +yarn database:migrate:prod +yarn command:prod upgrade-0.24 +``` + +The `yarn database:migrate:prod` command will apply the migrations to the database structure (core and metadata schemas) +The `yarn command:prod upgrade-0.24` takes care of the data migration of all workspaces. +