So Here is the problem, I’ve created an entity with a field of type “String” made several of those items and now realise I need more room and therefore need to convert that field to “Text”. I tried the null trick but that isn’t one of the options. Any ideas?
Share
You’ll probably have to create a new field in the object and migrate the existing objects over to use this new field.
You can do this by either migrating to the new field each time the object is fetched, and/or by having an offline task fetch some objects and migrate them, etc. If you don’t have many objects, you might as well do them in an offline migrating task.