summaryrefslogtreecommitdiff
path: root/schema/upgrade-1.1.4-1.1.5-pgsql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-05-17 08:45:17 +0100
committerAndrew Dolgov <[email protected]>2006-05-17 08:45:17 +0100
commit9483421615ba77c4e3e485d49ff2d287502e5149 (patch)
tree5a7a01089b2f0a290e5b5de171df9e423afa3c09 /schema/upgrade-1.1.4-1.1.5-pgsql.sql
parent6d1e02a2365c54c6e0d74e62e872da53c667e2fa (diff)
introduce old-skool theme
Diffstat (limited to 'schema/upgrade-1.1.4-1.1.5-pgsql.sql')
-rw-r--r--schema/upgrade-1.1.4-1.1.5-pgsql.sql22
1 files changed, 0 insertions, 22 deletions
diff --git a/schema/upgrade-1.1.4-1.1.5-pgsql.sql b/schema/upgrade-1.1.4-1.1.5-pgsql.sql
deleted file mode 100644
index 51437e4fa..000000000
--- a/schema/upgrade-1.1.4-1.1.5-pgsql.sql
+++ /dev/null
@@ -1,22 +0,0 @@
-begin;
-
-alter table ttrss_feeds add column rtl_content boolean;
-
-update ttrss_feeds set rtl_content = false;
-
-alter table ttrss_feeds alter column rtl_content set not null;
-alter table ttrss_feeds alter column rtl_content set default false;
-
-alter table ttrss_sessions drop column ip_address;
-
-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_filters drop column description;
-
-update ttrss_version set schema_version = 7;
-
-commit;