diff --git a/Bugzilla/DB/Mysql.pm b/Bugzilla/DB/Mysql.pm
index a1bd71b765e0152ce152df09e6351c90551647d5..da3e301a98c6f30cff32fec63d2760151b00c043 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";
         }
     }