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