Added uptime monitoring detail data and server monitoring schema

This commit is contained in:
Tola Leng
2025-07-09 21:59:22 +07:00
parent e355e771d1
commit ddeb22dc4d
5 changed files with 438 additions and 0 deletions
@@ -0,0 +1,61 @@
/// <reference path="../pb_data/types.d.ts" />
migrate((app) => {
const collection = app.findCollectionByNameOrId("pbc_1168766540")
// remove field
collection.fields.removeById("text1404634243")
// update field
collection.fields.addAt(15, new Field({
"autogeneratePattern": "",
"hidden": false,
"id": "text258142582",
"max": 0,
"min": 0,
"name": "region_name",
"pattern": "",
"presentable": false,
"primaryKey": false,
"required": false,
"system": false,
"type": "text"
}))
return app.save(collection)
}, (app) => {
const collection = app.findCollectionByNameOrId("pbc_1168766540")
// add field
collection.fields.addAt(17, new Field({
"autogeneratePattern": "",
"hidden": false,
"id": "text1404634243",
"max": 0,
"min": 0,
"name": "agent_ip_address",
"pattern": "",
"presentable": false,
"primaryKey": false,
"required": false,
"system": false,
"type": "text"
}))
// update field
collection.fields.addAt(15, new Field({
"autogeneratePattern": "",
"hidden": false,
"id": "text258142582",
"max": 0,
"min": 0,
"name": "region",
"pattern": "",
"presentable": false,
"primaryKey": false,
"required": false,
"system": false,
"type": "text"
}))
return app.save(collection)
})