mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 23:04:04 +00:00
5 lines
262 B
SQL
5 lines
262 B
SQL
-- You should not modify if this have pushed to Github, unless it does serious wrong with the db.
|
|
BEGIN TRANSACTION;
|
|
ALTER TABLE status_page ADD show_locale_selector BOOLEAN NOT NULL DEFAULT 0;
|
|
ALTER TABLE status_page ADD default_locale TEXT DEFAULT "";
|
|
COMMIT;
|