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
+1 -1
View File
@@ -9,7 +9,7 @@ create table ttrss_enclosures (id serial not null primary key,
title text not null,
duration text not null,
index (post_id),
foreign key (post_id) references ttrss_entries(id) ON DELETE cascade) TYPE=InnoDB;
foreign key (post_id) references ttrss_entries(id) ON DELETE cascade) ENGINE=InnoDB;
update ttrss_version set schema_version = 56;