mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
30 lines
721 B
PHP
30 lines
721 B
PHP
<?php
|
|
|
|
include('../config.php');
|
|
|
|
require_login();
|
|
|
|
if (!isadmin) {
|
|
error('Admin only');
|
|
}
|
|
|
|
print_header("Convert all tables from MYISAM to InnoDB", "Convert all tables from MYISAM to InnoDB",
|
|
"Convert all tables from MYISAM to InnoDB");
|
|
|
|
|
|
if ($confirm) {
|
|
|
|
print_heading("Please be patient and wait for this to complete...");
|
|
|
|
if ($tables = $db->MetaTables()) {
|
|
$db->debug = true;
|
|
foreach ($tables as $table) {
|
|
execute_sql("ALTER TABLE $table TYPE=INNODB; ");
|
|
}
|
|
}
|
|
} else {
|
|
notice("Are you sure you want convert all your tables to the InnoDB format?", "innodb.php?confirm=yes", "index.php");
|
|
}
|
|
|
|
?>
|