我将迁移添加到我的项目中。经过大量的工作,我让它独立工作。尝试更新时出现错误
@PrimaryKey field 'id' does not support null values in the existing Realm file. Migrate using RealmObjectSchema.setNullable(), or mark the field as @Required
这不适用于我添加的对象中的价值特征。任何人都可以详细说明这一点或链接到有关如何执行此操作的文档吗?我什么都找不到
这是变量
@PrimaryKey
private String id;
编辑:可能已经解决了
schema.get("Log").setNullable("id", true);