From f80d12828e30db73967cff312309ea06a748de9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Noco=C5=84?= Date: Tue, 13 Jan 2026 16:41:11 +0100 Subject: [PATCH] Added mention about messenger tables --- .../from_5.0/update_from_5.0.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/docs/update_and_migration/from_5.0/update_from_5.0.md b/docs/update_and_migration/from_5.0/update_from_5.0.md index 3a4eb92ef0..2b63094d43 100644 --- a/docs/update_and_migration/from_5.0/update_from_5.0.md +++ b/docs/update_and_migration/from_5.0/update_from_5.0.md @@ -180,6 +180,24 @@ If the platform comes from lower than v5.0.3 and is updated to higher than v5.0. WHERE tree_root_location_id IS NULL AND config::jsonb ? 'ibexa.site_access.config.content.tree_root.location_id'; ``` +## v5.0.5 + +### Database update + +Run the provided SQL upgrade script to ensure the Messenger tables for [background tasks](background_tasks.md) exist in your database: + +=== "MySQL" + + ``` sql + mysql -u -p < vendor/ibexa/installer/upgrade/db/mysql/ibexa-5.0.4-to-5.0.5.sql + ``` + +=== "PostgreSQL" + + ``` sql + psql < vendor/ibexa/installer/upgrade/db/postgresql/ibexa-5.0.4-to-5.0.5.sql + ``` + ## LTS Updates and additional packages [LTS Updates](editions.md#lts-updates) are standalone packages with their own update procedures.