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

29 lines
677 B
JavaScript

/// <reference path="../pb_data/types.d.ts" />
migrate((app) => {
const collection = app.findCollectionByNameOrId("pbc_2140565099")
// add field
collection.fields.addAt(4, new Field({
"autogeneratePattern": "",
"hidden": false,
"id": "text2109325948",
"max": 0,
"min": 0,
"name": "btn_text",
"pattern": "",
"presentable": false,
"primaryKey": false,
"required": false,
"system": false,
"type": "text"
}))
return app.save(collection)
}, (app) => {
const collection = app.findCollectionByNameOrId("pbc_2140565099")
// remove field
collection.fields.removeById("text2109325948")
return app.save(collection)
})