astro_minivan/backend/pb_migrations/1765746028_updated_posts.js

42 lines
924 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_1125843985")
// add field
collection.fields.addAt(9, new Field({
"hidden": false,
"id": "bool1332471722",
"name": "isDraft",
"presentable": false,
"required": false,
"system": false,
"type": "bool"
}))
// add field
collection.fields.addAt(10, new Field({
"hidden": false,
"id": "number300981383",
"max": null,
"min": null,
"name": "views",
"onlyInt": false,
"presentable": false,
"required": false,
"system": false,
"type": "number"
}))
return app.save(collection)
}, (app) => {
const collection = app.findCollectionByNameOrId("pbc_1125843985")
// remove field
collection.fields.removeById("bool1332471722")
// remove field
collection.fields.removeById("number300981383")
return app.save(collection)
})