/// migrate((app) => { const collection = app.findCollectionByNameOrId("pbc_3072146508") // update field collection.fields.addAt(0, new Field({ "autogeneratePattern": "[a-z0-9]{6}", "hidden": false, "id": "text3208210256", "max": 6, "min": 6, "name": "id", "pattern": "^[a-z0-9]+$", "presentable": false, "primaryKey": true, "required": true, "system": true, "type": "text" })) // update field collection.fields.addAt(1, new Field({ "autogeneratePattern": "", "hidden": false, "id": "text2849095986", "max": 0, "min": 0, "name": "first_name", "pattern": "", "presentable": false, "primaryKey": false, "required": true, "system": false, "type": "text" })) // update field collection.fields.addAt(2, new Field({ "autogeneratePattern": "", "hidden": false, "id": "text3356015194", "max": 0, "min": 0, "name": "last_name", "pattern": "", "presentable": false, "primaryKey": false, "required": true, "system": false, "type": "text" })) return app.save(collection) }, (app) => { const collection = app.findCollectionByNameOrId("pbc_3072146508") // update field collection.fields.addAt(0, new Field({ "autogeneratePattern": "[a-z0-9]{15}", "hidden": false, "id": "text3208210256", "max": 15, "min": 15, "name": "id", "pattern": "^[a-z0-9]+$", "presentable": false, "primaryKey": true, "required": true, "system": true, "type": "text" })) // update field collection.fields.addAt(1, new Field({ "autogeneratePattern": "", "hidden": false, "id": "text2849095986", "max": 0, "min": 0, "name": "first_name", "pattern": "", "presentable": false, "primaryKey": false, "required": false, "system": false, "type": "text" })) // update field collection.fields.addAt(2, new Field({ "autogeneratePattern": "", "hidden": false, "id": "text3356015194", "max": 0, "min": 0, "name": "last_name", "pattern": "", "presentable": false, "primaryKey": false, "required": false, "system": false, "type": "text" })) return app.save(collection) })