1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-10 16:01:33 +00:00

remove DISPLAY_HEADER/FOOTER options (update schema)

This commit is contained in:
Andrew Dolgov
2006-09-29 08:53:47 +01:00
parent c2625f8e49
commit 96527ac659
4 changed files with 24 additions and 6 deletions
+11
View File
@@ -0,0 +1,11 @@
begin;
delete FROM ttrss_user_prefs WHERE pref_name = 'DISPLAY_HEADER';
delete FROM ttrss_user_prefs WHERE pref_name = 'DISPLAY_FOOTER';
delete FROM ttrss_prefs WHERE pref_name = 'DISPLAY_HEADER';
delete FROM ttrss_prefs WHERE pref_name = 'DISPLAY_FOOTER';
update ttrss_version set schema_version = 11;
commit;