update mysql schema upgrade files to use ENGINE= instead of TYPE= (closes #359)

This commit is contained in:
Andrew Dolgov
2011-08-01 12:57:38 +04:00
parent 71bc164586
commit 1aea205cc1
8 changed files with 10 additions and 10 deletions

View File

@@ -4,7 +4,7 @@ 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;
foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB;
alter table ttrss_user_prefs add column profile integer;
update ttrss_user_prefs set profile = NULL;