-
Bug
-
Resolution: Won't Fix
-
Low
-
None
-
None
-
None
-
2
-
Minor
Issue Summary
When doing a migration if there are space shortcuts on the spaces being migrated, these links are not carried over to the target Cloud instance.
Steps to Reproduce
- Create a space
- Put several shortcuts in that space
- Migrate the space to the Cloud
Expected Results
Spaces shortcuts are migrated
Actual Results
The shortcuts are not migrated.
No errors on the logs
Workaround
No workaround is available yet.
Getting the shortcuts from Confluence database:
select * from "AO_187CCC_SIDEBAR_LINK" where "CATEGORY" = 'QUICK';
OR
SELECT sl.*, c.title, 'https://mycompany.com/spaces/'||s.spacekey||'/pages/'||c.contentid AS "URL" FROM content c join spaces s ON c.spaceid = s.spaceid join "AO_187CCC_SIDEBAR_LINK" sl on sl."DEST_PAGE_ID" = c.contentid where c.contentid in (select "DEST_PAGE_ID" from "AO_187CCC_SIDEBAR_LINK" where "CATEGORY" = 'QUICK');