diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-07-21 20:32:12 -0230 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-07-21 20:32:12 -0230 |
commit | 9e1dcf21dc5d65bcc4195f1ae4caedbe57835415 (patch) | |
tree | 7fa9a2a08e24de7d16c0196b61e7c1bf8540f486 /app/Schema/Postgres.php | |
parent | 4ae655ced334bb48342274caaf15f2b3d8b444f6 (diff) |
Improve webhooks to call external url on task creation/modification
Diffstat (limited to 'app/Schema/Postgres.php')
-rw-r--r-- | app/Schema/Postgres.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/app/Schema/Postgres.php b/app/Schema/Postgres.php index bc18bdca..a9eea531 100644 --- a/app/Schema/Postgres.php +++ b/app/Schema/Postgres.php @@ -4,7 +4,13 @@ namespace Schema; use Core\Security; -const VERSION = 2; +const VERSION = 3; + +function version_3($pdo) +{ + $pdo->exec("ALTER TABLE config ADD COLUMN webhooks_url_task_modification VARCHAR(255)"); + $pdo->exec("ALTER TABLE config ADD COLUMN webhooks_url_task_creation VARCHAR(255)"); +} function version_2($pdo) { |