Files
LiveCartaWP/devops/domain_db_fix.txt
2019-08-09 15:07:51 +03:00

43 lines
1.5 KiB
Plaintext

Update wp domain names in 5 db tables:
wp_options
wp_2_options
wp_blogs
wp_domain_mapping
wp_site
######FOR QA ENV
update wp_options set option_value = "https://qa.lawcarta.net" where option_id = 1 limit 1;
update wp_options set option_value = "https://qa.lawcarta.net" where option_id = 2 limit 1;
update wp_2_options set option_value = "https://qa.livecarta.com" where option_id = 1 limit 1;
update wp_2_options set option_value = "https://qa.lawcarta.net/livecarta" where option_id = 2 limit 1;
update wp_blogs set domain = "qa.lawcarta.net" where blog_id = 1 limit 1;
update wp_blogs set domain = "qa.lawcarta.net" where blog_id = 2 limit 1;
update wp_domain_mapping set domain = "qa.livecarta.com" where blog_id = 2 limit 1;
update wp_site set domain = "qa.lawcarta.net" where id =1 limit 1;
######FOR TEST QA ENV
update wp_options set option_value = "https://dev1.lawcarta.loc" where option_id = 1 limit 1;
update wp_options set option_value = "https://dev1.lawcarta.loc" where option_id = 2 limit 1;
update wp_2_options set option_value = "https://dev1.livecarta.loc" where option_id = 1 limit 1;
update wp_2_options set option_value = "https://dev1.lawcarta.loc/livecarta" where option_id = 2 limit 1;
update wp_blogs set domain = "dev1.lawcarta.loc" where blog_id = 1 limit 1;
update wp_blogs set domain = "dev1.lawcarta.loc" where blog_id = 2 limit 1;
update wp_domain_mapping set domain = "dev1.livecarta.loc" where blog_id = 2 limit 1;
update wp_site set domain = "dev1.lawcarta.loc" where id =1 limit 1;