extend webhook per site
Some checks failed
CI and deploy / migration-check (push) Failing after 14s
CI and deploy / deploy (push) Has been skipped

This commit is contained in:
Dusan Vojacek
2026-04-26 22:04:48 +02:00
parent 5f96a4cf01
commit 1d04790f28
6 changed files with 100 additions and 10 deletions

View File

@@ -0,0 +1,10 @@
alter table ems.site
add column if not exists discord_webhook_daily_url text,
add column if not exists discord_webhook_error_url text;
comment on column ems.site.discord_webhook_daily_url is
'Discord webhook pro běžné denní zprávy (např. ranní ekonomický report). Per-site konfigurace.';
comment on column ems.site.discord_webhook_error_url is
'Discord webhook pro error/critical alerty (mismatch, fatal plan vs actual, clock verify exhausted, apod.). Per-site konfigurace.';