summaryrefslogtreecommitdiff
path: root/schema/versions/mysql/56.sql
diff options
context:
space:
mode:
Diffstat (limited to 'schema/versions/mysql/56.sql')
-rw-r--r--schema/versions/mysql/56.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/schema/versions/mysql/56.sql b/schema/versions/mysql/56.sql
index af2fb8209..11cd3069c 100644
--- a/schema/versions/mysql/56.sql
+++ b/schema/versions/mysql/56.sql
@@ -9,7 +9,7 @@ create table ttrss_enclosures (id serial not null primary key,
title text not null,
duration text not null,
index (post_id),
- foreign key (post_id) references ttrss_entries(id) ON DELETE cascade) TYPE=InnoDB;
+ foreign key (post_id) references ttrss_entries(id) ON DELETE cascade) ENGINE=InnoDB;
update ttrss_version set schema_version = 56;