astro_avtourist/backend/pb_migrations/1778153269_updated_site_stats.js

21 lines
467 B
JavaScript
Raw Normal View History

2026-05-07 17:16:25 +05:00
/// <reference path="../pb_data/types.d.ts" />
migrate((app) => {
const collection = app.findCollectionByNameOrId("pbc_1840088895")
// update collection data
unmarshal({
"updateRule": "@request.auth.id != \"\""
}, collection)
return app.save(collection)
}, (app) => {
const collection = app.findCollectionByNameOrId("pbc_1840088895")
// update collection data
unmarshal({
"updateRule": ""
}, collection)
return app.save(collection)
})