Fix wrong picker, related to changes in #12122

This commit is contained in:
Sebastiaan Janssen
2022-04-14 14:15:25 +02:00
parent 48dbe959f6
commit 6519b88dfc

View File

@@ -859,7 +859,7 @@ namespace Umbraco.Cms.Infrastructure.Migrations.Install
if (_database.Exists<NodeDto>(1048))
{
_database.Insert(Cms.Core.Constants.DatabaseSchema.Tables.DataType, "pk", false, new DataTypeDto { NodeId = 1048, EditorAlias = Cms.Core.Constants.PropertyEditors.Aliases.MemberPicker, DbType = "Ntext" });
_database.Insert(Cms.Core.Constants.DatabaseSchema.Tables.DataType, "pk", false, new DataTypeDto { NodeId = 1048, EditorAlias = Cms.Core.Constants.PropertyEditors.Aliases.MediaPicker, DbType = "Ntext" });
}
if (_database.Exists<NodeDto>(1049))