Drop a table in a RealmSwift migration
问题 I am removing an old unused table from the schema. How can I delete it (DROP Table) from older versions of the app? What I have tried so far Removed GameScore.self from configration.objectTypes Bumped schema version Run the app Opened Realm Studio and the table GameScore is still there with the data that was already there previously Adding config.migrationBlock = { migration, oldSchemaVersion in if oldSchemaVersion < 10 { migration.enumerateObjects(ofType: "GameScore", { (oldObject, newObject