Files
lifemetrics/lifemetrics-server/pb/pb_migrations/1753415707_updated_workouts.js
2025-12-12 14:44:27 -05:00

29 lines
691 B
JavaScript

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