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

27 lines
633 B
JavaScript

/// <reference path="../pb_data/types.d.ts" />
migrate((app) => {
const collection = app.findCollectionByNameOrId("pbc_1449269656")
// remove field
collection.fields.removeById("number4113142680")
return app.save(collection)
}, (app) => {
const collection = app.findCollectionByNameOrId("pbc_1449269656")
// add field
collection.fields.addAt(1, new Field({
"hidden": false,
"id": "number4113142680",
"max": null,
"min": null,
"name": "order",
"onlyInt": false,
"presentable": false,
"required": false,
"system": false,
"type": "number"
}))
return app.save(collection)
})