Files
operacle--checkcle/server/pb_migrations/1757234002_updated_ping_data.js
2026-07-13 12:31:02 +08:00

21 lines
467 B
JavaScript

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