19 lines
475 B
JavaScript
19 lines
475 B
JavaScript
/// <reference path="../pb_data/types.d.ts" />
|
|
migrate((db) => {
|
|
const dao = new Dao(db)
|
|
const collection = dao.findCollectionByNameOrId("goeo2ubp103rzp9")
|
|
|
|
collection.updateRule = ""
|
|
collection.deleteRule = ""
|
|
|
|
return dao.saveCollection(collection)
|
|
}, (db) => {
|
|
const dao = new Dao(db)
|
|
const collection = dao.findCollectionByNameOrId("goeo2ubp103rzp9")
|
|
|
|
collection.updateRule = null
|
|
collection.deleteRule = null
|
|
|
|
return dao.saveCollection(collection)
|
|
})
|