astro_advokat/backend/pb_migrations/1773930148_updated_reviews.js

25 lines
578 B
JavaScript
Raw Normal View History

2026-03-30 20:21:41 +05:00
/// <reference path="../pb_data/types.d.ts" />
migrate((app) => {
const collection = app.findCollectionByNameOrId("pbc_4163081445")
// add field
collection.fields.addAt(10, new Field({
"hidden": false,
"id": "bool1369756112",
"name": "isPublished",
"presentable": false,
"required": false,
"system": false,
"type": "bool"
}))
return app.save(collection)
}, (app) => {
const collection = app.findCollectionByNameOrId("pbc_4163081445")
// remove field
collection.fields.removeById("bool1369756112")
return app.save(collection)
})