summaryrefslogtreecommitdiff
path: root/schema/versions/mysql/6.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/6.sql
parent71bc164586e9701b866a02814286f919dd744644 (diff)
update mysql schema upgrade files to use ENGINE= instead of TYPE= (closes #359)
Diffstat (limited to 'schema/versions/mysql/6.sql')
-rw-r--r--schema/versions/mysql/6.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/schema/versions/mysql/6.sql b/schema/versions/mysql/6.sql
index 1018bcf4d..b7ee97ccc 100644
--- a/schema/versions/mysql/6.sql
+++ b/schema/versions/mysql/6.sql
@@ -10,7 +10,7 @@ create table ttrss_sessions (id varchar(250) not null primary key,
expire integer not null,
ip_address varchar(15) not null default '',
index (id),
- index (expire)) TYPE=InnoDB;
+ index (expire)) ENGINE=InnoDB;
delete from ttrss_prefs where pref_name = 'ENABLE_SPLASH';