summaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-11-23 10:38:19 +0100
committerAndrew Dolgov <[email protected]>2005-11-23 10:38:19 +0100
commite0b77afcebdc9342757498a5f6909ef4d1bb1ca4 (patch)
treeddebbb00dc9d5cceb1f3f5026aa7116e2c7d2a62 /schema
parenta04a687d90ba87f6aab8c1961aa8043b221d720f (diff)
misc schema updates (for mysql)
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 d53478d1b..b1d57585e 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -25,7 +25,7 @@ create table ttrss_feed_categories(id integer not null primary key,
owner_uid integer not null,
title varchar(200) not null,
index(owner_uid),
- foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE);
+ foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) TYPE=InnoDB;
create table ttrss_feeds (id integer not null auto_increment primary key,
owner_uid integer not null,