From ccf6860f6bf6b2e22d1b2b9463a5fc2c3d068167 Mon Sep 17 00:00:00 2001 From: Quoc - Pham Ngoc Date: Tue, 14 Jul 2026 15:22:09 +0700 Subject: [PATCH] [IMP] database_cleanup: Add more tables to the purge tables blacklist --- database_cleanup/wizards/purge_tables.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/database_cleanup/wizards/purge_tables.py b/database_cleanup/wizards/purge_tables.py index 4376d8b41c7..5bb39c33411 100644 --- a/database_cleanup/wizards/purge_tables.py +++ b/database_cleanup/wizards/purge_tables.py @@ -17,6 +17,15 @@ class CleanupPurgeWizardTable(models.TransientModel): _description = "Purge tables" blacklist = [ "endpoint_route", # web-api/endpoint_route_handler + # \/\/ from Registry.setup_signaling() \/\/ + "orm_signaling_assets", + "orm_signaling_default", + "orm_signaling_groups", + "orm_signaling_registry", + "orm_signaling_routing", + "orm_signaling_stable", + "orm_signaling_templates", + # /\/\ from Registry.setup_signaling() /\/\ ] @api.model