Hello from MCP server
/// <reference path="../pb_data/types.d.ts" />
migrate((app) => {
const collection = app.findCollectionByNameOrId("pbc_3981801833")
// add field
collection.fields.addAt(7, new Field({
"autogeneratePattern": "1",
"hidden": false,
"id": "text2761599323",
"max": 0,
"min": 0,
"name": "multiplier",
"pattern": "^[0-9]+$",
"presentable": false,
"primaryKey": false,
"required": false,
"system": false,
"type": "text"
}))
return app.save(collection)
}, (app) => {
const collection = app.findCollectionByNameOrId("pbc_3981801833")
// remove field
collection.fields.removeById("text2761599323")
return app.save(collection)
})