Files
pocketbase/pb_migrations/1769973402_updated_mc_profiles.js
2026-02-04 00:21:37 +00:00

29 lines
689 B
JavaScript

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