mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2026-01-03 13:39:14 +00:00
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_access_keys (id serial not null primary key,
|
||||
feed_id varchar(250) not null,
|
||||
is_cat bool not null default false,
|
||||
owner_uid integer not null,
|
||||
foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) TYPE=InnoDB DEFAULT CHARSET=UTF8;
|
||||
foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
|
||||
|
||||
update ttrss_version set schema_version = 69;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user