VersionedSchema Protocol Updates
After updating to Xcode 15 beta 7, I got a VersionedSchema
error saying that
does not conform to protocol 'VersionedSchema'
Previously, the variable versionIdentifier
was of the type String.
static var versionIdentifier: String = "v1"
On the latest Xcode 15 beta 7, versionIdentifier
is now of the type Schema.Version
.
static var versionIdentifier: Schema.Version = Schema.Version(1, 0, 0)