update notifications,

This commit is contained in:
louiscklaw
2025-04-24 20:03:26 +08:00
parent 2dcc765072
commit 0785fcd144
43 changed files with 1991 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
/// <reference path="../pb_data/types.d.ts" />
migrate((app) => {
const collection = app.findCollectionByNameOrId("pbc_108570809")
// update collection data
unmarshal({
"name": "Customers"
}, collection)
return app.save(collection)
}, (app) => {
const collection = app.findCollectionByNameOrId("pbc_108570809")
// update collection data
unmarshal({
"name": "customers"
}, collection)
return app.save(collection)
})