summaryrefslogtreecommitdiff
path: root/schema/versions/mysql/63.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-01-13 18:31:51 +0300
committerAndrew Dolgov <[email protected]>2010-01-13 18:31:51 +0300
commitd9084cf22059f709e935c6c0755d2b69c21b3a87 (patch)
tree546788700196fbeb06afc2e87aa837a51e16a905 /schema/versions/mysql/63.sql
parent57c7aa0f335d1cfef65646c958b838fd69a9ba5d (diff)
implement settings profiles (bump schema)
Diffstat (limited to 'schema/versions/mysql/63.sql')
-rw-r--r--schema/versions/mysql/63.sql18
1 files changed, 18 insertions, 0 deletions
diff --git a/schema/versions/mysql/63.sql b/schema/versions/mysql/63.sql
new file mode 100644
index 000000000..e5b539906
--- /dev/null
+++ b/schema/versions/mysql/63.sql
@@ -0,0 +1,18 @@
+begin;
+
+create table ttrss_settings_profiles(id integer primary key auto_increment,
+ title varchar(250) not null,
+ owner_uid integer not null,
+ index (owner_uid),
+ foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) TYPE=InnoDB;
+
+alter table ttrss_user_prefs add column profile integer;
+update ttrss_user_prefs set profile = NULL;
+
+alter table ttrss_user_prefs add FOREIGN KEY (profile) REFERENCES ttrss_settings_profiles(id) ON DELETE CASCADE;
+
+insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_THEME_ID', 3, '0', '', 1);
+
+update ttrss_version set schema_version = 63;
+
+commit;