summaryrefslogtreecommitdiff
path: root/schema/versions/mysql/5.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-08-01 12:57:38 +0400
committerAndrew Dolgov <[email protected]>2011-08-01 12:57:38 +0400
commit1aea205cc1defa6b2948e40afa7839136ef94d4f (patch)
tree426d172ec5e1fb81d8d1b61e187a4627f5507f84 /schema/versions/mysql/5.sql
parent71bc164586e9701b866a02814286f919dd744644 (diff)
update mysql schema upgrade files to use ENGINE= instead of TYPE= (closes #359)
Diffstat (limited to 'schema/versions/mysql/5.sql')
-rw-r--r--schema/versions/mysql/5.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/schema/versions/mysql/5.sql b/schema/versions/mysql/5.sql
index e3ddb0357..1d8b8537b 100644
--- a/schema/versions/mysql/5.sql
+++ b/schema/versions/mysql/5.sql
@@ -5,7 +5,7 @@ create table ttrss_scheduled_updates (id integer not null primary key auto_incre
feed_id integer default null,
entered datetime not null,
foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE,
- foreign key (feed_id) references ttrss_feeds(id) ON DELETE CASCADE) TYPE=InnoDB;
+ foreign key (feed_id) references ttrss_feeds(id) ON DELETE CASCADE) ENGINE=InnoDB;
update ttrss_version set schema_version = 5;