summaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-05-11 23:25:56 +0400
committerAndrew Dolgov <[email protected]>2009-05-11 23:25:56 +0400
commit42a5226a748a44ce8fac78414a9f85049cef2c91 (patch)
tree7ef549d8ceda1befb11f76855629deab3e0ff075 /schema
parent090710c622a864d43611f3a2ee1eadcc262e5e6f (diff)
mysql: ttrss_enclosures should be an InnoDB table
Diffstat (limited to 'schema')
-rw-r--r--schema/ttrss_schema_mysql.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index ac057fd5d..abeb30eca 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -234,7 +234,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);
+ foreign key (post_id) references ttrss_entries(id) ON DELETE cascade) TYPE=InnoDB;
create table ttrss_prefs_types (id integer not null primary key,
type_name varchar(100) not null) TYPE=InnoDB;