moodle/admin/innodb.php

31 lines
888 B
PHP
Raw Normal View History

<?php
2006-03-06 13:22:37 +00:00
require_once('../config.php');
$confirm = optional_param('confirm', 0, PARAM_BOOL);
require_login();
require_capability('moodle/site:config', get_context_instance(CONTEXT_SYSTEM, SITEID));
print_header("Convert all tables from MYISAM to InnoDB", "Convert all tables from MYISAM to InnoDB",
"Convert all tables from MYISAM to InnoDB");
2006-03-06 13:22:37 +00:00
if ($confirm and confirm_sesskey()) {
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 {
2005-03-06 18:13:05 +00:00
notice_yesno("Are you sure you want convert all your tables to the InnoDB format?",
2006-03-06 13:22:37 +00:00
"innodb.php?confirm=1&sesskey=".sesskey(), "index.php");
}
?>