mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-11 07:43:28 +01:00
- Migrations-Fix: fixed the migrations by creating custom migration policy for Source and StoreApp to support sourceID renaming and ReleaseTracks integration respectively, removed intermediate models and xcmappingmodels since we jumped directly from altstore 1.6.3 to 2.0.x
This commit is contained in:
@@ -13,10 +13,10 @@ import CoreData
|
||||
public class ReleaseTrack: BaseEntity, Decodable
|
||||
{
|
||||
// attributes
|
||||
@NSManaged @objc(track) private var _track: String?
|
||||
@NSManaged @objc(track) public private(set) var _track: String?
|
||||
|
||||
// RelationShips
|
||||
@NSManaged @objc(releases) private var _releases: NSOrderedSet?
|
||||
@NSManaged @objc(releases) public private(set) var _releases: NSOrderedSet?
|
||||
@NSManaged public private(set) var storeApp: StoreApp?
|
||||
|
||||
private enum CodingKeys: String, CodingKey, CaseIterable {
|
||||
|
||||
Reference in New Issue
Block a user