这就是我为使迁移工作所做的工作。
我realm.js
位于/src
保存所有反应文件的位置。当我需要使用我的领域时,import realm from 'path/to/realm.js';
我realm.js
有我的旧模式和新模式。
import Realm from 'realm';
const schema = {
name: 'mySchema',
properties: {
name: 'string',
}
};
const schemaV1 = {
name: 'mySchema',
properties: {
name: 'string',
otherName: 'string',
}
};
请注意,它们具有相同的名称。realm.js
然后在我曾经拥有的地方的底部export default new Realm({schema: [schema]});
我现在有这个:
export default new Realm({
schema: [schemaV1],
schemaVersion: 1,
migration: (oldRealm, newRealm) => {
// only apply this change if upgrading to schemaVersion 1
if (oldRealm.schemaVersion < 1) {
const oldObjects = oldRealm.objects('schema');
const newObjects = newRealm.objects('schema');
// loop through all objects and set the name property in the new schema
for (let i = 0; i < oldObjects.length; i++) {
newObjects[i].otherName = 'otherName';
}
}
},
});
如果您不需要迁移数据,您可以使用新模式版本和新模式打开领域,它也应该可以工作。