astro_avtourist/backend/pb_migrations/1778153252_updated_site_stats.js

21 lines
445 B
JavaScript
Raw Normal View History

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