started db update script

This commit is contained in:
Christopher Pickering
2022-05-13 09:06:41 -05:00
parent b7dc8e3ef8
commit 23ce7c6623

View File

@@ -0,0 +1,15 @@
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;