astro_avtourist/backend/pb_migrations/1776610679_updated_consultations.js

25 lines
585 B
JavaScript
Raw Normal View History

/// <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)
})