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