Skip to content

Instantly share code, notes, and snippets.

@yaquawa
Created March 5, 2017 07:31
Show Gist options
  • Save yaquawa/9953c410415656ff3711b03e6c851bc9 to your computer and use it in GitHub Desktop.
Save yaquawa/9953c410415656ff3711b03e6c851bc9 to your computer and use it in GitHub Desktop.
WordPress database migration SQL
UPDATE wp_options SET option_value = replace(option_value, 'http://OLD', 'https://NEW') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid, 'http://OLD','https://NEW');
UPDATE wp_posts SET post_content = replace(post_content, 'http://OLD', 'https://NEW');
UPDATE wp_postmeta SET meta_value = replace(meta_value,'http://OLD','https://NEW');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment