summaryrefslogtreecommitdiff
path: root/schema/versions/mysql/69.sql
diff options
context:
space:
mode:
Diffstat (limited to 'schema/versions/mysql/69.sql')
-rw-r--r--schema/versions/mysql/69.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/schema/versions/mysql/69.sql b/schema/versions/mysql/69.sql
index 75d2dadcb..3e42fd3fb 100644
--- a/schema/versions/mysql/69.sql
+++ b/schema/versions/mysql/69.sql
@@ -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;