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

29 lines
692 B
JavaScript

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