updated v13 package to v14.. I have an
# package-development
m
updated v13 package to v14.. I have an existing property editor that stores configuration data in
multivalues
the closest I can find in v14 is
propertyEditorUiAlias: 'Umb.PropertyEditorUi.MultipleTextString'
but the schema between the two doesn't appear to match v13
[{"value":"small"},{"value":"default"},{"value":"big"}]
where as v14 multipletextstring stores as
["small","medium","large"]
Has anyone found a way to translate?
I can't see anything in umbraco v13 -> 14 db migrations either...
n
Hi Mike I asked around a bit, not my expertice, but here is some hints: DataType configuration is migrated here: https://github.com/umbraco/Umbraco-CMS/blob/contrib/src/Umbraco.Infrastructure/Migrations/Upgrade/V_14_0_0/MigrateDataTypeConfigurations.cs For the Prevalue/Options-Config migration you could have a look at the RadioButton migration here: https://github.com/umbraco/Umbraco-CMS/blob/contrib/src/Umbraco.Infrastructure/Migrations/Upgrade/V_14_0_0/MigrateDataTypeConfigurations.cs#L488 I dont know, but I hope that gives you enough 🙂
m
Thank you, though am I right in reading that these migrations are only targeting core property editors.. and not would not migrate any custom property editors with
multivalues
set as the storage schema for a configuration?