summaryrefslogtreecommitdiff
path: root/schema/versions/mysql/51.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/51.sql
parent71bc164586e9701b866a02814286f919dd744644 (diff)
update mysql schema upgrade files to use ENGINE= instead of TYPE= (closes #359)
Diffstat (limited to 'schema/versions/mysql/51.sql')
-rw-r--r--schema/versions/mysql/51.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/schema/versions/mysql/51.sql b/schema/versions/mysql/51.sql
index 46d0543ff..e8fe4c7b8 100644
--- a/schema/versions/mysql/51.sql
+++ b/schema/versions/mysql/51.sql
@@ -2,13 +2,13 @@ create table ttrss_labels2 (id integer not null primary key auto_increment,
owner_uid integer not null,
caption varchar(250) not null,
foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE
-) TYPE=InnoDB;
+) ENGINE=InnoDB;
create table ttrss_user_labels2 (label_id integer not null,
article_id integer not null,
foreign key (label_id) references ttrss_labels2(id) ON DELETE CASCADE,
foreign key (article_id) references ttrss_entries(id) ON DELETE CASCADE
-) TYPE=InnoDB;
+) ENGINE=InnoDB;
insert into ttrss_filter_actions (id,name,description) values (7, 'label',
'Assign label');