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.
61 lines
1.2 KiB
JavaScript
61 lines
1.2 KiB
JavaScript
/// <reference path="../pb_data/types.d.ts" />
|
|
migrate((app) => {
|
|
const collection = app.findCollectionByNameOrId("pbc_3856397659")
|
|
|
|
// update collection data
|
|
unmarshal({
|
|
"listRule": "",
|
|
"viewRule": ""
|
|
}, collection)
|
|
|
|
// remove field
|
|
collection.fields.removeById("_clone_SvwX")
|
|
|
|
// add field
|
|
collection.fields.addAt(1, new Field({
|
|
"autogeneratePattern": "",
|
|
"hidden": false,
|
|
"id": "_clone_EBPK",
|
|
"max": 0,
|
|
"min": 0,
|
|
"name": "doctor",
|
|
"pattern": "",
|
|
"presentable": false,
|
|
"primaryKey": false,
|
|
"required": false,
|
|
"system": false,
|
|
"type": "text"
|
|
}))
|
|
|
|
return app.save(collection)
|
|
}, (app) => {
|
|
const collection = app.findCollectionByNameOrId("pbc_3856397659")
|
|
|
|
// update collection data
|
|
unmarshal({
|
|
"listRule": null,
|
|
"viewRule": null
|
|
}, collection)
|
|
|
|
// add field
|
|
collection.fields.addAt(1, new Field({
|
|
"autogeneratePattern": "",
|
|
"hidden": false,
|
|
"id": "_clone_SvwX",
|
|
"max": 0,
|
|
"min": 0,
|
|
"name": "doctor",
|
|
"pattern": "",
|
|
"presentable": false,
|
|
"primaryKey": false,
|
|
"required": false,
|
|
"system": false,
|
|
"type": "text"
|
|
}))
|
|
|
|
// remove field
|
|
collection.fields.removeById("_clone_EBPK")
|
|
|
|
return app.save(collection)
|
|
})
|