Files
flxn-app/pb_migrations/1755545239_updated_teams.js
2025-08-20 22:35:40 -05:00

29 lines
697 B
JavaScript

/// <reference path="../pb_data/types.d.ts" />
migrate((app) => {
const collection = app.findCollectionByNameOrId("pbc_1568971955")
// add field
collection.fields.addAt(14, new Field({
"cascadeDelete": false,
"collectionId": "pbc_340646327",
"hidden": false,
"id": "relation3837590211",
"maxSelect": 999,
"minSelect": 0,
"name": "tournaments",
"presentable": false,
"required": false,
"system": false,
"type": "relation"
}))
return app.save(collection)
}, (app) => {
const collection = app.findCollectionByNameOrId("pbc_1568971955")
// remove field
collection.fields.removeById("relation3837590211")
return app.save(collection)
})