astro_advokat/backend/pb_migrations/1774356020_updated_reviews.js
2026-03-30 20:21:41 +05:00

32 lines
738 B
JavaScript

/// <reference path="../pb_data/types.d.ts" />
migrate((app) => {
const collection = app.findCollectionByNameOrId("pbc_4163081445")
// update field
collection.fields.addAt(6, new Field({
"hidden": false,
"id": "bool256245529",
"name": "is_verified",
"presentable": false,
"required": false,
"system": false,
"type": "bool"
}))
return app.save(collection)
}, (app) => {
const collection = app.findCollectionByNameOrId("pbc_4163081445")
// update field
collection.fields.addAt(6, new Field({
"hidden": false,
"id": "bool256245529",
"name": "verified",
"presentable": false,
"required": false,
"system": false,
"type": "bool"
}))
return app.save(collection)
})