astro_avtourist/backend/pb_migrations/1776696207_updated_review_votes.js

29 lines
737 B
JavaScript
Raw Normal View History

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