blob: 181bc1ff9f8aac3e7045cc8264c268e14958bc10 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/// <reference path="../pb_data/types.d.ts" />
migrate((app) => {
const collection = app.findCollectionByNameOrId("pbc_879072730")
// update collection data
unmarshal({
"createRule": "",
"updateRule": "",
"viewRule": ""
}, collection)
return app.save(collection)
}, (app) => {
const collection = app.findCollectionByNameOrId("pbc_879072730")
// update collection data
unmarshal({
"createRule": null,
"updateRule": null,
"viewRule": null
}, collection)
return app.save(collection)
})
|