astro_minivan/backend/pb_migrations/1765393342_updated_site_settings.js

27 lines
613 B
JavaScript
Raw Normal View History

2026-03-29 17:24:16 +05:00
/// <reference path="../pb_data/types.d.ts" />
migrate((app) => {
const collection = app.findCollectionByNameOrId("pbc_3940974")
// add field
collection.fields.addAt(2, new Field({
"exceptDomains": null,
"hidden": false,
"id": "url15430798",
"name": "site_url",
"onlyDomains": null,
"presentable": false,
"required": false,
"system": false,
"type": "url"
}))
return app.save(collection)
}, (app) => {
const collection = app.findCollectionByNameOrId("pbc_3940974")
// remove field
collection.fields.removeById("url15430798")
return app.save(collection)
})