From 8b6aab6cf4fdb90a3b8b338529596e4d0930ab4a Mon Sep 17 00:00:00 2001 From: Alexander Borg Date: Mon, 22 Sep 2025 09:48:52 +0200 Subject: [PATCH] Fix jwt-token --- server/migrations/20250820000001-create-initial-tables.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/server/migrations/20250820000001-create-initial-tables.js b/server/migrations/20250820000001-create-initial-tables.js index ca09358..fdc402e 100644 --- a/server/migrations/20250820000001-create-initial-tables.js +++ b/server/migrations/20250820000001-create-initial-tables.js @@ -600,6 +600,11 @@ module.exports = { defaultValue: Sequelize.UUIDV4, primaryKey: true }, + alert_event_id: { + type: Sequelize.UUID, + allowNull: true, + comment: 'Groups related alerts (SMS, email, webhook) that are part of the same detection event' + }, alert_rule_id: { type: Sequelize.UUID, allowNull: true,