Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the difference between .xcdatamodeld and BadgerNew.xcdatamodel

I think xcode 3 use the latter and xcode 4 use the former.

Are they interchangeable?

like image 858
user4951 Avatar asked Apr 29 '11 03:04

user4951


1 Answers

.xcdatamodeld is a container for .xcdatamodel files. It's used for versioning and migration. When moving from v1 of the model to v2, you add a new xcdatamodel to it that has v2 along with the mapping model.

like image 196
McCygnus Avatar answered Nov 18 '22 17:11

McCygnus