Files
2026-07-13 12:31:02 +08:00

21 lines
461 B
JavaScript

/// <reference path="../pb_data/types.d.ts" />
migrate((app) => {
const collection = app.findCollectionByNameOrId("pbc_863811952")
// update collection data
unmarshal({
"listRule": "@request.auth.id != \"\""
}, collection)
return app.save(collection)
}, (app) => {
const collection = app.findCollectionByNameOrId("pbc_863811952")
// update collection data
unmarshal({
"listRule": ""
}, collection)
return app.save(collection)
})