在 realm-swift 中添加新的 realm 对象时是否需要迁移?

Is there a migration required when adding a new realm object in realm-swift?

realm-swift中添加新对象时realm是否需要迁移?

我已经在 Realm 中有一个对象。现在,我想添加到新的 Realm 对象。
我需要为此添加迁移吗?

没有。当您更改 Realm 架构中的现有 model/class 时,您只需要执行迁移。

只有在更改现有对象的属性时才需要迁移。如果您要添加新对象 model/new 对象或只是更改现有模型的值,则不需要迁移。