/// migrate((app) => { const collection = app.findCollectionByNameOrId("_pb_users_auth_") // update collection data unmarshal({ "oauth2": { "mappedFields": { "name": "" } } }, collection) // remove field collection.fields.removeById("text1579384326") return app.save(collection) }, (app) => { const collection = app.findCollectionByNameOrId("_pb_users_auth_") // update collection data unmarshal({ "oauth2": { "mappedFields": { "name": "name" } } }, collection) // add field collection.fields.addAt(6, new Field({ "autogeneratePattern": "", "hidden": false, "id": "text1579384326", "max": 255, "min": 0, "name": "name", "pattern": "", "presentable": false, "primaryKey": false, "required": false, "system": false, "type": "text" })) return app.save(collection) })