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.
board/pb_migrations/1763197575_updated_testDorz.js

55 lines
1.3 KiB
JavaScript

/// <reference path="../pb_data/types.d.ts" />
migrate((app) => {
const collection = app.findCollectionByNameOrId("pbc_2992844423")
// update collection data
unmarshal({
"viewQuery": "select \n (ROW_NUMBER() OVER()) as id,\n `Dvn1`.`patientName` as dvn_patient\nfrom `Dvn1`\n \n"
}, collection)
// remove field
collection.fields.removeById("json4023128640")
// add field
collection.fields.addAt(1, new Field({
"autogeneratePattern": "",
"hidden": false,
"id": "_clone_gHsm",
"max": 0,
"min": 0,
"name": "dvn_patient",
"pattern": "",
"presentable": false,
"primaryKey": false,
"required": false,
"system": false,
"type": "text"
}))
return app.save(collection)
}, (app) => {
const collection = app.findCollectionByNameOrId("pbc_2992844423")
// update collection data
unmarshal({
"viewQuery": "select \n (ROW_NUMBER() OVER()) as id,\n upper(`Dvn1`.`patientName`) as dvn_patient\nfrom `Dvn1`\n \n"
}, collection)
// add field
collection.fields.addAt(1, new Field({
"hidden": false,
"id": "json4023128640",
"maxSize": 1,
"name": "dvn_patient",
"presentable": false,
"required": false,
"system": false,
"type": "json"
}))
// remove field
collection.fields.removeById("_clone_gHsm")
return app.save(collection)
})