7 lines
207 B
MySQL
7 lines
207 B
MySQL
|
-- schema version 20: insert date
|
||
|
-- add outgoing webhook to systems
|
||
|
|
||
|
alter table systems add column webhook_url text;
|
||
|
alter table systems add column webhook_token text;
|
||
|
|
||
|
update info set schema_version = 20;
|