summaryrefslogtreecommitdiff
path: root/schema/upgrade-1.2.3-1.2.4-pgsql.sql
diff options
context:
space:
mode:
Diffstat (limited to 'schema/upgrade-1.2.3-1.2.4-pgsql.sql')
-rw-r--r--schema/upgrade-1.2.3-1.2.4-pgsql.sql3
1 files changed, 3 insertions, 0 deletions
diff --git a/schema/upgrade-1.2.3-1.2.4-pgsql.sql b/schema/upgrade-1.2.3-1.2.4-pgsql.sql
index 43ae8600c..2de774267 100644
--- a/schema/upgrade-1.2.3-1.2.4-pgsql.sql
+++ b/schema/upgrade-1.2.3-1.2.4-pgsql.sql
@@ -6,6 +6,9 @@ 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';
+insert into ttrss_themes (theme_name, theme_path)
+ values ('Graycube', 'graycube');
+
update ttrss_version set schema_version = 11;
commit;