Sindbad~EG File Manager
<?php
/*
* Drops the `thread_id` primary key on the ticket_email_info table if it
* exists
*/
class DropTicketEmailInfoPk extends MigrationTask {
var $description = "Reticulating splines";
function run($max_time) {
$sql = 'SELECT `INDEX_NAME` FROM information_schema.statistics
WHERE table_schema = '.db_input(DBNAME)
.' AND table_name = '.db_input(TICKET_EMAIL_INFO_TABLE)
.' AND column_name = '.db_input('thread_id');
if ($name = db_result(db_query($sql))) {
if ($name == 'PRIMARY') {
db_query('ALTER TABLE `'.TICKET_EMAIL_INFO_TABLE
.'` DROP PRIMARY KEY');
}
}
}
}
return 'DropTicketEmailInfoPk';
?>
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists