Created
February 18, 2018 21:32
-
-
Save ig0r74/3d454062ef0bdd67a7c3d2ff2b045935 to your computer and use it in GitHub Desktop.
Revisions
-
ig0r74 created this gist
Feb 18, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,27 @@ <?php ini_set("max_execution_time", 0); ignore_user_abort(true); $current_prefix = $modx->config['table_prefix']; $new_prefix = 'My_Prefix234_'; $stmt = $modx->query("SHOW TABLES"); $tables = $stmt->fetchAll(PDO::FETCH_NUM); $stmt->closeCursor(); foreach ($tables as $table) { $table = reset($table); $preg = "/^{$current_prefix}/u"; if (preg_match($preg, $table)) { $new_table_name = preg_replace($preg, $new_prefix, $table); $sql = "RENAME TABLE `{$table}` TO `{$new_table_name}`"; if ($s = $modx->prepare($sql)) { $s->execute(); } } } print "\nTables are updated";