Created
August 6, 2014 23:21
-
-
Save steverobbins/ab55916c48b8d38cfd7c to your computer and use it in GitHub Desktop.
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 characters
set @STORE_TO_COPY_FROM = 2; | |
set @STORE_TO_COPY_TO = 3; | |
insert ignore into cms_block_store | |
select block_id, @STORE_TO_COPY_TO | |
from cms_block_store | |
where store_id = @STORE_TO_COPY_FROM; | |
insert ignore into cms_page_store | |
select page_id, @STORE_TO_COPY_TO | |
from cms_page_store | |
where store_id = @STORE_TO_COPY_FROM; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment