uptime-kuma/db/patch-add-apikey-monitor.sql
2021-09-27 11:17:57 +02:00

7 lines
195 B
SQL

-- You should not modify if this have pushed to Github, unless it does serious wrong with the db.
BEGIN TRANSACTION;
ALTER TABLE monitor
ADD apikey VARCHAR(64) default '' not null;
COMMIT;