Migrations¶
Overview¶
A migration transforms an existing realm and its objects from its current Realm Schema version to a newer one. Application data models typically change over time to accommodate new requirements and features. Migrations give you the flexibility to automatically update your existing application data whenever a client application upgrades to a newer version.
Key Concepts¶
Synced Migration¶
A synced migration is a migration for a realm that automatically Syncs with another remote realm. Realm Database automatically handles all synced schema migrations and does not allow you to specify a migration function.
Synced realms represent multiple end users and devices that will likely not all immediately update to the most recent version of an application. MongoDB Realm ensures that synced schema changes are backwards compatible, which means that client applications that have not updated to the most recent version can still sync with clients that are using the most recent version.
MongoDB Realm handles synced migrations using the following framework:
Change Type | Description |
---|---|
Schema Version | MongoDB Realm ignores any schema version passed to the realm configuration. |
Migration Function | MongoDB Realm throws an error if the realm configuration includes a local migration function. |
Additions | MongoDB Realm automatically applies additive changes, such as a new class or class property. |
Deletions | MongoDB Realm does not delete removed fields from the database, but ignores them in future read operations. MongoDB Realm includes deleted properties in new objects with a default value that depends on whether or not the property was required:
|
Modifications | MongoDB Realm prevents modifications to an existing property other than delete operations. Modifications that synced realms do not support include:
|
Local Migration¶
A local migration is a migration for a realm that does not automatically Sync with another realm. Local migrations have access to the existing Realm Schema, version, and objects and define logic that incrementally updates the realm to its new schema version. To perform a local migration you must specify a new schema version that is higher than the current version and provide a migration function when you open the out-of-date realm.
MongoDB Realm automatically migrates certain changes, such as new and deleted properties, but does not automatically set values for new properties unless the updated object schema specifies a default value. You can define additional logic in the migration that dynamically calculates a new property's value. Migrations do not allow you to directly rename a property. Instead, it treats a renamed property as a new property that you must set to the value of the old property before MongoDB Realm automatically deletes it.
A realm using schema version 1
has a Person
object type:
// Version 1 had separate fields for first name and last name class MigrationExample_Person: Object { dynamic var firstName = "" dynamic var lastName = "" dynamic var age = 0 }
The developer decides that the Person
class should use a combined
fullName
field instead of the separate firstName
and
lastName
fields:
// Version 2 now has one combined field for the name. class MigrationExample_Person: Object { dynamic var fullName = "" dynamic var age = 0 }
To migrate the realm to conform to the updated Person
schema,
the developer sets the realm's schema version to 2
and
defines a migration function to set the value of fullName
based
on the existing firstName
and lastName
properties:
// In application(_:didFinishLaunchingWithOptions:) let config = Realm.Configuration( schemaVersion: 2, // Set the new schema version. migrationBlock: { migration, oldSchemaVersion in if oldSchemaVersion < 2 { // The enumerateObjects(ofType:_:) method iterates over // every Person object stored in the Realm file migration.enumerateObjects(ofType: MigrationExample_Person.className()) { oldObject, newObject in // combine name fields into a single field let firstName = oldObject!["firstName"] as? String let lastName = oldObject!["lastName"] as? String newObject!["fullName"] = "\(firstName!) \(lastName!)" } } } ) // Tell Realm to use this new configuration object for the default Realm Realm.Configuration.defaultConfiguration = config // Now that we've told Realm how to handle the schema change, opening the file // will automatically perform the migration let realm = try! Realm()
Summary¶
- A migration transforms an existing realm and its objects from its current schema version to a later one.
- MongoDB Realm automatically handles synced migration, i.e. migrations where the realm is synced. MongoDB Realm does not allow migration functions for such migrations.
- MongoDB Realm allows you to specify migration functions for local migrations, i.e. migrations where the realm is not synced with MongoDB Realm.