Hello,
I have a database with large no. of records (threads and posts), was upgrading from 3.0.x version to 3.5.3 latest version.
Upgradation was on following file and step.
upgrade_350rc3.php
Step 3
How can i confirm via PhpMyAdmin if this alteration has been done ?
I have a database with large no. of records (threads and posts), was upgrading from 3.0.x version to 3.5.3 latest version.
Upgradation was on following file and step.
upgrade_350rc3.php
Step 3
Code:
// ############################################################################# // Post Alter if ($vbulletin->GPC['step'] == 3) { $query[]['hideerror'] = "ALTER TABLE " . TABLE_PREFIX . "post DROP INDEX iconid"; $explain[] = sprintf($upgrade_phrases['upgrade_300b3.php']['altering_x_table'], 'post', 1, 1); exec_queries(); } // #############################################################################
Comment