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

38 lines
847 B
JavaScript

/// <reference path="../pb_data/types.d.ts" />
migrate((app) => {
const collection = app.findCollectionByNameOrId("pbc_4163081445")
// update field
collection.fields.addAt(3, new Field({
"hidden": false,
"id": "number3632866850",
"max": 5,
"min": 1,
"name": "rating",
"onlyInt": false,
"presentable": false,
"required": false,
"system": false,
"type": "number"
}))
return app.save(collection)
}, (app) => {
const collection = app.findCollectionByNameOrId("pbc_4163081445")
// update field
collection.fields.addAt(3, new Field({
"hidden": false,
"id": "number3632866850",
"max": null,
"min": null,
"name": "rating",
"onlyInt": false,
"presentable": false,
"required": false,
"system": false,
"type": "number"
}))
return app.save(collection)
})