You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
uptime-kuma/db/patch-add-other-auth.sql

16 lines
202 B

BEGIN TRANSACTION;
ALTER TABLE monitor
ADD auth_method VARCHAR(250);
COMMIT
BEGIN TRANSACTION;
UPDATE monitor
SET auth_method = 'basic'
WHERE basic_auth_user is not null
COMMIT;