You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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;
|