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