astro_advokat/backend/pb_migrations/1772900109_updated_comments.js
2026-03-30 20:21:41 +05:00

28 lines
689 B
JavaScript

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