I have a Realm object modeled this way
class WorkoutSet: Object {
I am trying to migrate.
In my AppDelegate I imported RealmSwift .
Inside the didFinishLaunchWithOptions function didFinishLaunchWithOptions I call
Migrations().checkSchema()
Migrations are a class declared in another file.
Inside this file there is a structure declared as such.
func checkSchema() { Realm.Configuration(
I get an error to add setCount to the model
migration swift data-migration realm data-management
Cody weaver
source share