astro_avtourist/backend/pb_migrations/1776514585_updated_comments.js
2026-04-18 18:25:10 +05:00

28 lines
814 B
JavaScript

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