astro_minivan/backend/pb_migrations/1766053385_updated_about_hero.js
2026-03-29 17:24:16 +05:00

24 lines
573 B
JavaScript

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