/// migrate((db) => { const dao = new Dao(db) const collection = dao.findCollectionByNameOrId("gblacklist_col") collection.updateRule = "reporter = @request.auth.id" return dao.saveCollection(collection) }, (db) => { const dao = new Dao(db) const collection = dao.findCollectionByNameOrId("gblacklist_col") collection.updateRule = null return dao.saveCollection(collection) })