29 lines
672 B
JavaScript
29 lines
672 B
JavaScript
/// <reference path="../pb_data/types.d.ts" />
|
|
migrate((app) => {
|
|
const collection = app.findCollectionByNameOrId("pbc_3161158982")
|
|
|
|
// add field
|
|
collection.fields.addAt(1, new Field({
|
|
"autogeneratePattern": "",
|
|
"hidden": false,
|
|
"id": "text724990059",
|
|
"max": 0,
|
|
"min": 0,
|
|
"name": "title",
|
|
"pattern": "",
|
|
"presentable": false,
|
|
"primaryKey": false,
|
|
"required": false,
|
|
"system": false,
|
|
"type": "text"
|
|
}))
|
|
|
|
return app.save(collection)
|
|
}, (app) => {
|
|
const collection = app.findCollectionByNameOrId("pbc_3161158982")
|
|
|
|
// remove field
|
|
collection.fields.removeById("text724990059")
|
|
|
|
return app.save(collection)
|
|
})
|