42 lines
934 B
JavaScript
42 lines
934 B
JavaScript
/// <reference path="../pb_data/types.d.ts" />
|
|
migrate((app) => {
|
|
const collection = app.findCollectionByNameOrId("pbc_3912384429")
|
|
|
|
// update field
|
|
collection.fields.addAt(6, new Field({
|
|
"autogeneratePattern": "",
|
|
"hidden": false,
|
|
"id": "text2363381545",
|
|
"max": 0,
|
|
"min": 0,
|
|
"name": "type",
|
|
"pattern": "",
|
|
"presentable": true,
|
|
"primaryKey": false,
|
|
"required": false,
|
|
"system": false,
|
|
"type": "text"
|
|
}))
|
|
|
|
return app.save(collection)
|
|
}, (app) => {
|
|
const collection = app.findCollectionByNameOrId("pbc_3912384429")
|
|
|
|
// update field
|
|
collection.fields.addAt(6, new Field({
|
|
"autogeneratePattern": "",
|
|
"hidden": false,
|
|
"id": "text2363381545",
|
|
"max": 0,
|
|
"min": 0,
|
|
"name": "type",
|
|
"pattern": "",
|
|
"presentable": false,
|
|
"primaryKey": false,
|
|
"required": false,
|
|
"system": false,
|
|
"type": "text"
|
|
}))
|
|
|
|
return app.save(collection)
|
|
})
|