标签: iphone sqlite core-data-migration
首先我的.xcdatamodeld,GameInfo和Score中有两个实体,其值存储在sqlite db中。
.xcdatamodeld
GameInfo
Score
现在,我不得不在我的GameInfo实体中进行更改,添加了一个新字段。所以在我的新.xcdatamodeld Gameinfo实体中还有一个字段,然后是旧字段。
有没有办法从旧的sqlite获取值到新的?
答案 0 :(得分:0)
您需要实现数据库迁移。
我会考虑自动轻量级迁移 - 请查看this question。