From 97fb6b1e4255bb89e36fcf54a6408dc3377982ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nuno=20G=C3=B3is?= Date: Wed, 6 Dec 2023 15:14:47 +0000 Subject: [PATCH] feat: add event action name --- src/migrations/20231205155331-event-actions.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/migrations/20231205155331-event-actions.js b/src/migrations/20231205155331-event-actions.js index ae37f8362d..02bff51c69 100644 --- a/src/migrations/20231205155331-event-actions.js +++ b/src/migrations/20231205155331-event-actions.js @@ -7,6 +7,7 @@ exports.up = function (db, cb) { ( id SERIAL PRIMARY KEY NOT NULL, enabled BOOLEAN DEFAULT true NOT NULL, + name TEXT NOT NULL, event TEXT NOT NULL, action TEXT NOT NULL, parameters JSONB NOT NULL DEFAULT '{}'::jsonb,