astro_avtourist/backend/pb_migrations/1776528788_updated_reviews.js
2026-04-19 19:00:42 +05:00

27 lines
638 B
JavaScript

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