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

21 lines
444 B
JavaScript

/// <reference path="../pb_data/types.d.ts" />
migrate((app) => {
const collection = app.findCollectionByNameOrId("pbc_3872109612")
// update collection data
unmarshal({
"name": "vtubers"
}, collection)
return app.save(collection)
}, (app) => {
const collection = app.findCollectionByNameOrId("pbc_3872109612")
// update collection data
unmarshal({
"name": "vtuber"
}, collection)
return app.save(collection)
})