astro_avtourist/backend/pb_migrations/1776200481_updated_posts.js

24 lines
572 B
JavaScript

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