Notes/db/migrations/0185__migrate_black_theme_to_dark.sql

5 lines
215 B
MySQL
Raw Normal View History

2021-09-25 21:58:15 +02:00
-- black theme has been removed, dark is closest replacement
UPDATE options SET value = 'dark' WHERE name = 'theme' AND value = 'black';
UPDATE options SET value = 'light' WHERE name = 'theme' AND value = 'white';