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

24 lines
578 B
JavaScript

/// <reference path="../pb_data/types.d.ts" />
migrate((app) => {
const collection = app.findCollectionByNameOrId("pbc_1125843985")
// add field
collection.fields.addAt(11, new Field({
"hidden": false,
"id": "bool4080639015",
"name": "isImportant",
"presentable": false,
"required": false,
"system": false,
"type": "bool"
}))
return app.save(collection)
}, (app) => {
const collection = app.findCollectionByNameOrId("pbc_1125843985")
// remove field
collection.fields.removeById("bool4080639015")
return app.save(collection)
})