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
MySQL
12 lines
315 B
MySQL
18 years ago
|
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;
|