From de99ce364779281a8df3884786ec29ed5fdb396c Mon Sep 17 00:00:00 2001 From: Lucas Marcouiller <45882981+Hystepik@users.noreply.github.com> Date: Fri, 18 Apr 2025 12:58:04 +0200 Subject: [PATCH] Fix webhook_history database (#33889) * Fix webhook_history database * add error meesage --- htdocs/install/mysql/tables/llx_webhook_history-webhook.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/htdocs/install/mysql/tables/llx_webhook_history-webhook.sql b/htdocs/install/mysql/tables/llx_webhook_history-webhook.sql index 047f2eba7dd..6fcc304858a 100644 --- a/htdocs/install/mysql/tables/llx_webhook_history-webhook.sql +++ b/htdocs/install/mysql/tables/llx_webhook_history-webhook.sql @@ -18,9 +18,11 @@ CREATE TABLE llx_webhook_history( -- BEGIN MODULEBUILDER FIELDS rowid integer AUTO_INCREMENT PRIMARY KEY NOT NULL, --ref varchar(128) NOT NULL, + trigger_code varchar(128) NOT NULL, trigger_data text NOT NULL, fk_target integer NOT NULL, url integer NOT NULL, + error_messsage text, --note_public text, note_private text, date_creation datetime NOT NULL,