astro_avtourist/backend/pb_migrations/1776355306_updated_post_votes.js

25 lines
527 B
JavaScript
Raw Normal View History

/// <reference path="../pb_data/types.d.ts" />
migrate((app) => {
const collection = app.findCollectionByNameOrId("pbc_941672112")
// update collection data
unmarshal({
"createRule": "",
"listRule": "",
"viewRule": ""
}, collection)
return app.save(collection)
}, (app) => {
const collection = app.findCollectionByNameOrId("pbc_941672112")
// update collection data
unmarshal({
"createRule": null,
"listRule": null,
"viewRule": null
}, collection)
return app.save(collection)
})