blob: b9f84efc7055c0306aad71ab2040c4bbc2b1bde9 (
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_4148374969")
// update collection data
unmarshal({
"viewRule": ""
}, collection)
return app.save(collection)
}, (app) => {
const collection = app.findCollectionByNameOrId("pbc_4148374969")
// update collection data
unmarshal({
"viewRule": null
}, collection)
return app.save(collection)
})
|