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

45 lines
1006 B
JavaScript

/// <reference path="../pb_data/types.d.ts" />
migrate((app) => {
const collection = app.findCollectionByNameOrId("pbc_586073990")
// remove field
collection.fields.removeById("text4105598805")
// add field
collection.fields.addAt(7, new Field({
"hidden": false,
"id": "json4105598805",
"maxSize": 0,
"name": "recurrence_pattern",
"presentable": false,
"required": false,
"system": false,
"type": "json"
}))
return app.save(collection)
}, (app) => {
const collection = app.findCollectionByNameOrId("pbc_586073990")
// add field
collection.fields.addAt(7, new Field({
"autogeneratePattern": "",
"hidden": false,
"id": "text4105598805",
"max": 0,
"min": 0,
"name": "recurrence_pattern",
"pattern": "",
"presentable": false,
"primaryKey": false,
"required": false,
"system": false,
"type": "text"
}))
// remove field
collection.fields.removeById("json4105598805")
return app.save(collection)
})