MySQL Bulk rename (run as SQL the results of this query)
select concat('RENAME TABLE ', table_name, ' TO ', substr(table_name, 4), ';') from information_schema.tables where table_name like 'prefix%' and table_schema = 'dbname';