From d9084cf22059f709e935c6c0755d2b69c21b3a87 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 13 Jan 2010 18:31:51 +0300 Subject: implement settings profiles (bump schema) --- schema/versions/mysql/63.sql | 18 ++++++++++++++++++ schema/versions/pgsql/63.sql | 16 ++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 schema/versions/mysql/63.sql create mode 100644 schema/versions/pgsql/63.sql (limited to 'schema/versions') 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; diff --git a/schema/versions/pgsql/63.sql b/schema/versions/pgsql/63.sql new file mode 100644 index 000000000..90bde3154 --- /dev/null +++ b/schema/versions/pgsql/63.sql @@ -0,0 +1,16 @@ +begin; + +create table ttrss_settings_profiles(id serial not null primary key, + title varchar(250) not null, + owner_uid integer not null references ttrss_users(id) on delete cascade); + +alter table ttrss_user_prefs add column profile integer; +update ttrss_user_prefs set profile = NULL; + +alter table ttrss_user_prefs add constraint "$3" 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; -- cgit v1.2.3