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.
30 lines
680 B
JavaScript
30 lines
680 B
JavaScript
/// <reference path="../pb_data/types.d.ts" />
|
|
migrate((app) => {
|
|
const collection = app.findCollectionByNameOrId("pbc_1127093390")
|
|
|
|
// add field
|
|
collection.fields.addAt(7, new Field({
|
|
"autogeneratePattern": "",
|
|
"hidden": false,
|
|
"id": "text1389772923",
|
|
"max": 0,
|
|
"min": 0,
|
|
"name": "volumeCode2",
|
|
"pattern": "",
|
|
"presentable": false,
|
|
"primaryKey": false,
|
|
"required": false,
|
|
"system": false,
|
|
"type": "text"
|
|
}))
|
|
|
|
return app.save(collection)
|
|
}, (app) => {
|
|
const collection = app.findCollectionByNameOrId("pbc_1127093390")
|
|
|
|
// remove field
|
|
collection.fields.removeById("text1389772923")
|
|
|
|
return app.save(collection)
|
|
})
|