summaryrefslogtreecommitdiff
path: root/schema/upgrade-1.1.4-1.1.5-mysql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-03-29 04:11:48 +0100
committerAndrew Dolgov <[email protected]>2006-03-29 04:11:48 +0100
commit01b3e1919a5c99d21c0db8c13f1883320940c147 (patch)
tree5de4be740ff1b5c10c99a13ccd84f48b2f273002 /schema/upgrade-1.1.4-1.1.5-mysql.sql
parent9d87df8f60f2c049de57faae1c827d457be1e7ea (diff)
split backend rpc, various interface improvements
Diffstat (limited to 'schema/upgrade-1.1.4-1.1.5-mysql.sql')
-rw-r--r--schema/upgrade-1.1.4-1.1.5-mysql.sql8
1 files changed, 8 insertions, 0 deletions
diff --git a/schema/upgrade-1.1.4-1.1.5-mysql.sql b/schema/upgrade-1.1.4-1.1.5-mysql.sql
index 9fec820f6..bee135989 100644
--- a/schema/upgrade-1.1.4-1.1.5-mysql.sql
+++ b/schema/upgrade-1.1.4-1.1.5-mysql.sql
@@ -5,7 +5,15 @@ update ttrss_feeds set rtl_content = false;
alter table ttrss_feeds change rtl_content rtl_content bool not null;
alter table ttrss_feeds alter column rtl_content set default false;
+delete from ttrss_user_prefs where pref_name = 'DISPLAY_FEEDLIST_ACTIONS';
+delete from ttrss_prefs where pref_name = 'DISPLAY_FEEDLIST_ACTIONS';
+
+delete from ttrss_user_prefs where pref_name = 'ENABLE_PREFS_CATCHUP_UNCATCHUP';
+delete from ttrss_prefs where pref_name = 'ENABLE_PREFS_CATCHUP_UNCATCHUP';
+
alter table ttrss_sessions drop column ip_address;
+alter table ttrss_filters drop column description;
+
update ttrss_version set schema_version = 7;