Call it "toinnodb"

This commit is contained in:
Michael 2017-04-22 21:55:16 +00:00
parent aaa558f7ea
commit 2628ff91f4
2 changed files with 3 additions and 3 deletions

View file

@ -1751,7 +1751,7 @@ function dbstructure_run(&$argv, &$argc) {
case "dumpsql":
print_structure(db_definition());
return;
case "innodb":
case "toinnodb":
convert_to_innodb();
return;
}
@ -1765,7 +1765,7 @@ function dbstructure_run(&$argv, &$argc) {
echo "dryrun show database update schema queries without running them\n";
echo "update update database schema\n";
echo "dumpsql dump database schema\n";
echo "innodb convert all tables from MyISAM to InnoDB\n";
echo "toinnodb convert all tables from MyISAM to InnoDB\n";
return;
}