astro_avtourist/backend/pb_migrations/1777232058_updated_post_views.js

23 lines
535 B
JavaScript
Raw Normal View History

2026-04-27 01:04:06 +05:00
/// <reference path="../pb_data/types.d.ts" />
migrate((app) => {
const collection = app.findCollectionByNameOrId("pbc_2019238136")
// update collection data
unmarshal({
"deleteRule": "@request.auth.id != ''",
"updateRule": "@request.auth.id != ''"
}, collection)
return app.save(collection)
}, (app) => {
const collection = app.findCollectionByNameOrId("pbc_2019238136")
// update collection data
unmarshal({
"deleteRule": null,
"updateRule": null
}, collection)
return app.save(collection)
})