astro_avtourist/backend/pb_migrations/1777468200_updated_site_visitors.js

20 lines
469 B
JavaScript

/// <reference path="../pb_data/types.d.ts" />
migrate((app) => {
const collection = app.findCollectionByNameOrId("pbc_2651661972")
// update collection data
unmarshal({
"createRule": ""
}, collection)
return app.save(collection)
}, (app) => {
const collection = app.findCollectionByNameOrId("pbc_2651661972")
// update collection data
unmarshal({
"createRule": "@request.method = \"POST\""
}, collection)
return app.save(collection)
})