Updates + migrates Core Data model to v2

This commit is contained in:
Riley Testut
2019-09-14 12:38:53 -07:00
parent ad69b9989c
commit 9f9710c31d
9 changed files with 658 additions and 51 deletions

View File

@@ -11,6 +11,7 @@ import CoreData
extension Source
{
static let altStoreIdentifier = "com.rileytestut.AltStore"
static let altStoreSourceURL = URL(string: "https://www.dropbox.com/s/ernal98djzo4pe3/Apps-Staging.json?dl=1")!
}
@objc(Source)
@@ -111,7 +112,7 @@ extension Source
let source = Source(context: context)
source.name = "AltStore"
source.identifier = Source.altStoreIdentifier
source.sourceURL = URL(string: "https://www.dropbox.com/s/ernal98djzo4pe3/Apps-Staging.json?dl=1")!
source.sourceURL = Source.altStoreSourceURL
return source
}