dylanjameswagner
9/22/2016 - 5:59 PM

sql rename wordpress tables

sql rename wordpress tables

RENAME table `wp_commentmeta` TO `xyz_commentmeta`;
RENAME table `wp_comments` TO `xyz_comments`;
RENAME table `wp_links` TO `xyz_links`;
RENAME table `wp_options` TO `xyz_options`;
RENAME table `wp_postmeta` TO `xyz_postmeta`;
RENAME table `wp_posts` TO `xyz_posts`;
RENAME table `wp_terms` TO `xyz_terms`;
RENAME table `wp_termmeta` TO `xyz_termmeta`;
RENAME table `wp_term_relationships` TO `xyz_term_relationships`;
RENAME table `wp_term_taxonomy` TO `xyz_term_taxonomy`;
RENAME table `wp_usermeta` TO `xyz_usermeta`;
RENAME table `wp_users` TO `xyz_users`;

RENAME table `wp_ewwwio_images` TO `xyz_ewwwio_images`;

RENAME table `wp_rg_form` TO `xyz_rg_form`;
RENAME table `wp_rg_form_meta` TO `xyz_rg_form_meta`;
RENAME table `wp_rg_form_view` TO `xyz_rg_form_view`;
RENAME table `wp_rg_incomplete_submissions` TO `xyz_rg_incomplete_submissions`;
RENAME table `wp_rg_lead` TO `xyz_rg_lead`;
RENAME table `wp_rg_lead_detail` TO `xyz_rg_lead_detail`;
RENAME table `wp_rg_lead_detail_long` TO `xyz_rg_lead_detail_long`;
RENAME table `wp_rg_lead_meta` TO `xyz_rg_lead_meta`;
RENAME table `wp_rg_lead_notes` TO `xyz_rg_lead_notes`;