mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-13 09:04:11 -08:00
11 lines
252 B
SQL
11 lines
252 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 basicauth_user TEXT default null;
|
|
|
|
ALTER TABLE monitor
|
|
ADD basicauth_pass TEXT default null;
|
|
|
|
COMMIT;
|