mirror of
https://github.com/koichixD/uptime-kuma.git
synced 2026-08-29 08:01:03 +00:00
started db update script
This commit is contained in:
@@ -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;
|
||||
Reference in New Issue
Block a user