diff options
-rw-r--r-- | Bugzilla/DB/Mysql.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/DB/Mysql.pm b/Bugzilla/DB/Mysql.pm index a1bd71b76..da3e301a9 100644 --- a/Bugzilla/DB/Mysql.pm +++ b/Bugzilla/DB/Mysql.pm @@ -381,7 +381,7 @@ EOT " most tables.\nConverting tables to InnoDB:\n"; foreach my $table (@myisam_tables) { print "Converting table $table... "; - $self->do("ALTER TABLE $table TYPE = InnoDB"); + $self->do("ALTER TABLE $table ENGINE = InnoDB"); print "done.\n"; } } |