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,42 @@
/// <reference path="../pb_data/types.d.ts" />
migrate((app) => {
const collection = app.findCollectionByNameOrId("pbc_171698555")
// update field
collection.fields.addAt(1, 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_171698555")
// update field
collection.fields.addAt(1, 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)
})