summaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-03-04 07:32:40 +0100
committerAndrew Dolgov <[email protected]>2006-03-04 07:32:40 +0100
commit9e2cdd51353c47b10928b78523bce0b5a35353a3 (patch)
tree4a7533b822deea44a222e02890839c4d92253afc /schema
parente7811ea52f442a281e1fa9a95d9d8ff604de7e4a (diff)
remove ENABLE_SPLASH user param, just in case
Diffstat (limited to 'schema')
-rw-r--r--schema/upgrade-1.1.3-1.1.4-mysql.sql2
-rw-r--r--schema/upgrade-1.1.3-1.1.4-pgsql.sql2
2 files changed, 4 insertions, 0 deletions
diff --git a/schema/upgrade-1.1.3-1.1.4-mysql.sql b/schema/upgrade-1.1.3-1.1.4-mysql.sql
index 329a297c6..12df2044a 100644
--- a/schema/upgrade-1.1.3-1.1.4-mysql.sql
+++ b/schema/upgrade-1.1.3-1.1.4-mysql.sql
@@ -12,5 +12,7 @@ create table ttrss_sessions (id varchar(250) not null primary key,
index (id),
index (expire)) TYPE=InnoDB;
+delete from ttrss_prefs where pref_name = 'ENABLE_SPLASH';
+
update ttrss_version set schema_version = 6;
diff --git a/schema/upgrade-1.1.3-1.1.4-pgsql.sql b/schema/upgrade-1.1.3-1.1.4-pgsql.sql
index 4e81bb45a..da4267678 100644
--- a/schema/upgrade-1.1.3-1.1.4-pgsql.sql
+++ b/schema/upgrade-1.1.3-1.1.4-pgsql.sql
@@ -15,6 +15,8 @@ create table ttrss_sessions (id varchar(250) unique not null primary key,
create index ttrss_sessions_id_index on ttrss_sessions(id);
create index ttrss_sessions_expire_index on ttrss_sessions(expire);
+delete from ttrss_prefs where pref_name = 'ENABLE_SPLASH';
+
update ttrss_version set schema_version = 6;
commit;