-
Assume I have the following realm model (simplified): public class ScoreInfo : RealmObject
{
[PrimaryKey]
public Guid ID { get; set; }
public string Hash { get; set; }
} I want to annotate I tried to look for an answer to this in docs and only found indexed fields mentioned here which is not explicit on the matter at hand. The docs on changing schema also do not mention index annotations in any way. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Adding and removing indexes does not require bumping the schema version as it doesn't necessitate migrations (the data is still the same, we just build an index for faster lookups). |
Beta Was this translation helpful? Give feedback.
Adding and removing indexes does not require bumping the schema version as it doesn't necessitate migrations (the data is still the same, we just build an index for faster lookups).