summaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-09-30 17:33:56 +0100
committerAndrew Dolgov <[email protected]>2006-09-30 17:33:56 +0100
commit800a71e0f10799d10271506b289802df11166069 (patch)
treec74c0df1ecdbe6174796ff2501f9e5bb22a40572 /schema
parent6e8c65b8241ece3a769cc5636c828d67219636e8 (diff)
add graycube theme
Diffstat (limited to 'schema')
-rw-r--r--schema/upgrade-1.2.3-1.2.4-mysql.sql3
-rw-r--r--schema/upgrade-1.2.3-1.2.4-pgsql.sql3
2 files changed, 6 insertions, 0 deletions
diff --git a/schema/upgrade-1.2.3-1.2.4-mysql.sql b/schema/upgrade-1.2.3-1.2.4-mysql.sql
index 43ae8600c..2de774267 100644
--- a/schema/upgrade-1.2.3-1.2.4-mysql.sql
+++ b/schema/upgrade-1.2.3-1.2.4-mysql.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;
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;