Last active
April 29, 2024 19:29
-
-
Save AaronSadlerUK/b18e747c395d5b9e47869de0b314401f to your computer and use it in GitHub Desktop.
Update Umbraco.Dropdown and Umbraco.DropDownMultiple to Umbraco.DropDown.Flexible
This file contains 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
select * from cmsDataType where nodeId = ID | |
update cmsDataType set propertyEditorAlias = 'Umbraco.DropDown.Flexible' where nodeId = ID | |
select * from cmsDataTypePreValues where datatypeNodeId = ID | |
insert into cmsDataTypePreValues (alias, sortorder, [value], datatypeNodeId) values ('multiple', 7, '0', ID) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment