Getting this error when I’m running the upgrade command:
Error-Could not convert Content Property "Text" in table dbo.CMS_PageTypeProperty to field because it has multiple definitions. Please make sure to have one defintion for each content property. Read more on https://docs.litium.com/documentation/upgrading-to-litium-7/upgrading-the-database#Fields
I looked at the link but I can’t figure out how to solve it. Anyone fimiliar with this?
How are you upgrading your solution?
Beginning on on new 7.2 Accelerator and lifting in code from v5 or are you trying to upgrade 5 accelerator directly to 7.2?
You probebly have 2 properties with same name that you need to change.
Check the ones with SimpleStringProperty och LongStringProperty.
You can find them with this query: SELECT PropertyName, COUNT(DISTINCT PropertyType) AS NumberOfPropertyType FROM CMS_PageProperty GROUP BY PropertyName ORDER BY PropertyName DESC