astro_avtourist/backend/pb_migrations/1776610679_updated_consultations.js
2026-04-19 20:19:24 +05:00

24 lines
585 B
JavaScript

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