started db update script

This commit is contained in:
Christopher Pickering 2022-05-13 09:06:41 -05:00
parent b7dc8e3ef8
commit 23ce7c6623
No known key found for this signature in database
GPG key ID: E14DB3B0A0FACF84

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;