28 lines
634 B
JavaScript
28 lines
634 B
JavaScript
/// <reference path="../pb_data/types.d.ts" />
|
|
migrate((app) => {
|
|
const collection = app.findCollectionByNameOrId("pbc_2541054544")
|
|
|
|
// add field
|
|
collection.fields.addAt(20, new Field({
|
|
"hidden": false,
|
|
"id": "number3320769076",
|
|
"max": null,
|
|
"min": null,
|
|
"name": "round",
|
|
"onlyInt": false,
|
|
"presentable": false,
|
|
"required": false,
|
|
"system": false,
|
|
"type": "number"
|
|
}))
|
|
|
|
return app.save(collection)
|
|
}, (app) => {
|
|
const collection = app.findCollectionByNameOrId("pbc_2541054544")
|
|
|
|
// remove field
|
|
collection.fields.removeById("number3320769076")
|
|
|
|
return app.save(collection)
|
|
})
|