12 lines
257 B
Swift
12 lines
257 B
Swift
import SwiftData
|
|
|
|
struct WorkoutsMigrationPlan: SchemaMigrationPlan {
|
|
static var schemas: [VersionedSchema.Type] = [
|
|
SchemaV1.self
|
|
]
|
|
|
|
static var stages: [MigrationStage] = [
|
|
// Add migration stages here in the future
|
|
]
|
|
}
|