Files
vitrify-me/apps/pocketbase/pb_migrations/1756206566_updated_timeSlots.js
2025-08-26 16:49:54 +04:00

41 lines
972 B
JavaScript

/// <reference path="../pb_data/types.d.ts" />
migrate((app) => {
const collection = app.findCollectionByNameOrId("pbc_586073990")
// update field
collection.fields.addAt(1, new Field({
"cascadeDelete": false,
"collectionId": "pbc_43114331",
"hidden": false,
"id": "relation3360453765",
"maxSelect": 999,
"minSelect": 0,
"name": "booking_types",
"presentable": false,
"required": true,
"system": false,
"type": "relation"
}))
return app.save(collection)
}, (app) => {
const collection = app.findCollectionByNameOrId("pbc_586073990")
// update field
collection.fields.addAt(1, new Field({
"cascadeDelete": false,
"collectionId": "pbc_43114331",
"hidden": false,
"id": "relation3360453765",
"maxSelect": 999,
"minSelect": 0,
"name": "booking_types",
"presentable": false,
"required": false,
"system": false,
"type": "relation"
}))
return app.save(collection)
})