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

28 lines
691 B
JavaScript

/// <reference path="../pb_data/types.d.ts" />
migrate((app) => {
const collection = app.findCollectionByNameOrId("pbc_4163081445")
// add field
collection.fields.addAt(4, new Field({
"cascadeDelete": false,
"collectionId": "_pb_users_auth_",
"hidden": false,
"id": "relation3182418120",
"maxSelect": 1,
"minSelect": 0,
"name": "author",
"presentable": false,
"required": false,
"system": false,
"type": "relation"
}))
return app.save(collection)
}, (app) => {
const collection = app.findCollectionByNameOrId("pbc_4163081445")
// remove field
collection.fields.removeById("relation3182418120")
return app.save(collection)
})