fp/services/pocketbase/pb_migrations/1762063470_updated_vods.js
2025-11-05 20:49:00 -09:00

30 lines
684 B
JavaScript

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