blob: b96946206399f814a8430d6c0051595f5dae8935 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/// <reference path="../pb_data/types.d.ts" />
migrate((app) => {
const collection = app.findCollectionByNameOrId("pbc_879072730")
// update collection data
unmarshal({
"name": "list"
}, collection)
return app.save(collection)
}, (app) => {
const collection = app.findCollectionByNameOrId("pbc_879072730")
// update collection data
unmarshal({
"name": "games"
}, collection)
return app.save(collection)
})
|