/// migrate((app) => { const collection = app.findCollectionByNameOrId("pbc_135889472") // update collection data unmarshal({ "name": "team_stats_per_tournament" }, collection) // remove field collection.fields.removeById("_clone_2Mic") // remove field collection.fields.removeById("_clone_C8ev") // add field collection.fields.addAt(2, new Field({ "autogeneratePattern": "", "hidden": false, "id": "_clone_QmWG", "max": 0, "min": 0, "name": "team_name", "pattern": "", "presentable": false, "primaryKey": false, "required": true, "system": false, "type": "text" })) // add field collection.fields.addAt(4, new Field({ "autogeneratePattern": "", "hidden": false, "id": "_clone_1o7N", "max": 0, "min": 0, "name": "tournament_name", "pattern": "", "presentable": false, "primaryKey": false, "required": true, "system": false, "type": "text" })) return app.save(collection) }, (app) => { const collection = app.findCollectionByNameOrId("pbc_135889472") // update collection data unmarshal({ "name": "team_stats" }, collection) // add field collection.fields.addAt(2, new Field({ "autogeneratePattern": "", "hidden": false, "id": "_clone_2Mic", "max": 0, "min": 0, "name": "team_name", "pattern": "", "presentable": false, "primaryKey": false, "required": true, "system": false, "type": "text" })) // add field collection.fields.addAt(4, new Field({ "autogeneratePattern": "", "hidden": false, "id": "_clone_C8ev", "max": 0, "min": 0, "name": "tournament_name", "pattern": "", "presentable": false, "primaryKey": false, "required": true, "system": false, "type": "text" })) // remove field collection.fields.removeById("_clone_QmWG") // remove field collection.fields.removeById("_clone_1o7N") return app.save(collection) })