Remove 'type=innodb' syntax (illegal in MySQL 5.5)

This commit is contained in:
Baron Schwartz
2012-06-03 16:25:28 -04:00
parent bfd2222a54
commit bac93e1201
4 changed files with 10 additions and 10 deletions

View File

@@ -7,7 +7,7 @@ create table table_1(
c int not null,
d varchar(50),
key(b)
) type=innodb;
) engine=innodb;
insert into table_1 values
(1, 2, 3, 4),