1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-10-13 11:17:26 +02:00

feat: add event action name

This commit is contained in:
Nuno Góis 2023-12-06 15:14:47 +00:00
parent 5c3228473c
commit 97fb6b1e42
No known key found for this signature in database
GPG Key ID: 71ECC689F1091765

View File

@ -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,