update mysql schema upgrade files to use ENGINE= instead of TYPE= (closes #359)
This commit is contained in:
@@ -5,7 +5,7 @@ create table ttrss_scheduled_updates (id integer not null primary key auto_incre
|
||||
feed_id integer default null,
|
||||
entered datetime not null,
|
||||
foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE,
|
||||
foreign key (feed_id) references ttrss_feeds(id) ON DELETE CASCADE) TYPE=InnoDB;
|
||||
foreign key (feed_id) references ttrss_feeds(id) ON DELETE CASCADE) ENGINE=InnoDB;
|
||||
|
||||
update ttrss_version set schema_version = 5;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user