update mysql schema upgrade files to use ENGINE= instead of TYPE= (closes #359)
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user