2010-01-13 16:31:51 +01:00
|
|
|
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),
|
2011-08-01 10:57:38 +02:00
|
|
|
foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB;
|
2010-01-13 16:31:51 +01:00
|
|
|
|
|
|
|
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;
|