Another #CloudKit question...
What could have caused these ckAsset record types to show up in my Development Schema as available to deploy to Production?
The image1 and image2 are regular Core Data attributes, that can be shared via iCloud, but I wasn’t anticipating the ckAsset records being available as a Schema change?
@thatvirtualboy storing binary data in CoreData can either be inline or external, at the discretion of CoreData. So one image might fall under the threshold size and is stored inline, and another image might be larger than the threshold, and gets stored externally.
@deeje @thatvirtualboy Right! I love that about binary data with CD. I guess I was surprised to see it as a difference that required publishing. I’d been running that DB without it published for months.