summaryrefslogtreecommitdiffstats
path: root/db/old_migrations/patch-status-page-footer-css.sql
blob: beef922216bdf97bea75505cea18708bbe42c981 (plain)
1
2
3
4
5
6
7
8
9
10
11
-- 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 footer_text TEXT;
ALTER TABLE status_page
    ADD custom_css TEXT;
ALTER TABLE status_page
    ADD show_powered_by BOOLEAN NOT NULL DEFAULT 1;

COMMIT;