realm / realm-graphql-service

GraphQL service for Realm Object Server
https://realm.io
Apache License 2.0
43 stars 10 forks source link

It there a way to delete an existing field inside the class of our realm? #49

Closed howdyhyber closed 6 years ago

howdyhyber commented 6 years ago

Can we do this in realm? We needed it especially if we manually added the field using Realm Studio and i mistakenly choose the wrong data type for instance. Is this a possible feature in realm? :smiley:

nirinchev commented 6 years ago

Synchronized Realms only support additive migrations (i.e. you can't really remove fields or change their type). You can read more about it in the documentation.

If you don't have live apps that use that Realm, it would probably be easiest if you just created a new one.

howdyhyber commented 6 years ago

Understood. Thanks Sir Nikola!