summaryrefslogtreecommitdiff
path: root/schema/versions/mysql/84.sql
diff options
context:
space:
mode:
Diffstat (limited to 'schema/versions/mysql/84.sql')
-rw-r--r--schema/versions/mysql/84.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/schema/versions/mysql/84.sql b/schema/versions/mysql/84.sql
index 5fe530c94..cc28b7574 100644
--- a/schema/versions/mysql/84.sql
+++ b/schema/versions/mysql/84.sql
@@ -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;