mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-23 00:01:29 +00:00
12 lines
315 B
PL/PgSQL
12 lines
315 B
PL/PgSQL
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;
|