mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2026-01-04 04:29:20 +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_linked_instances (id integer not null primary key auto_increm
|
||||
last_status_in integer not null,
|
||||
last_status_out integer not null,
|
||||
access_key varchar(250) not null unique,
|
||||
access_url text not null) TYPE=InnoDB DEFAULT CHARSET=UTF8;
|
||||
access_url text not null) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
|
||||
|
||||
create table ttrss_linked_feeds (
|
||||
feed_url text not null,
|
||||
@@ -14,7 +14,7 @@ create table ttrss_linked_feeds (
|
||||
updated datetime not null,
|
||||
instance_id integer not null,
|
||||
subscribers integer not null,
|
||||
foreign key (instance_id) references ttrss_linked_instances(id) ON DELETE CASCADE) TYPE=InnoDB DEFAULT CHARSET=UTF8;
|
||||
foreign key (instance_id) references ttrss_linked_instances(id) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
|
||||
|
||||
drop table ttrss_scheduled_updates;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user