Schema changes
ObjectBox manages its data model (schema) mostly automatically. ObjectBox db supports automatic schema migration to make data persistence as easy as possible for application developers.
Renaming Entities and Properties
// `objectbox:"uid"`
type OldEntityName struct {
Id uint64
}
type Task struct {
Id uint64
OldPropertyName string `objectbox:"uid"`
}Changing Property Types
New property, different name
Reset data - new UID on a property
Last updated