query("ALTER TABLE binaries ENGINE=InnoDB ROW_FORMAT=DYNAMIC;"); echo "Finished converting the binaries table back to InnoDB.\n\n"; echo "Converting the parts table back to InnoDB\n"; $db->query("ALTER TABLE parts ENGINE=InnoDB ROW_FORMAT=DYNAMIC;"); echo "Finished converting the parts table back to InnoDB.\n\n"; echo "Converting the releases table back to InnoDB\n"; $db->query("ALTER TABLE releases ENGINE=InnoDB ROW_FORMAT=DYNAMIC;"); echo "Finished converting the releases table back to InnoDB.\n\n"; ?>