Files
workouts/Workouts/Schema/WorkoutsMigrationPlan.swift
2025-07-25 17:42:25 -04:00

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
]
}