You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
board/pb_migrations/1760925651_updated_dnevnoi_...

21 lines
465 B
JavaScript

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