diff --git a/server/pb_migrations/1753102275_updated_server_metrics.js b/server/pb_migrations/1753102275_updated_server_metrics.js
new file mode 100644
index 0000000..acce145
--- /dev/null
+++ b/server/pb_migrations/1753102275_updated_server_metrics.js
@@ -0,0 +1,61 @@
+///
+migrate((app) => {
+ const collection = app.findCollectionByNameOrId("pbc_1998570700")
+
+ // add field
+ collection.fields.addAt(20, new Field({
+ "autogeneratePattern": "",
+ "hidden": false,
+ "id": "text772177811",
+ "max": 0,
+ "min": 0,
+ "name": "detail",
+ "pattern": "",
+ "presentable": false,
+ "primaryKey": false,
+ "required": false,
+ "system": false,
+ "type": "text"
+ }))
+
+ // update field
+ collection.fields.addAt(19, new Field({
+ "autogeneratePattern": "",
+ "hidden": false,
+ "id": "text3065852031",
+ "max": 0,
+ "min": 0,
+ "name": "error_message",
+ "pattern": "",
+ "presentable": false,
+ "primaryKey": false,
+ "required": false,
+ "system": false,
+ "type": "text"
+ }))
+
+ return app.save(collection)
+}, (app) => {
+ const collection = app.findCollectionByNameOrId("pbc_1998570700")
+
+ // remove field
+ collection.fields.removeById("text772177811")
+
+ // update field
+ collection.fields.addAt(19, new Field({
+ "autogeneratePattern": "",
+ "hidden": false,
+ "id": "text3065852031",
+ "max": 0,
+ "min": 0,
+ "name": "message",
+ "pattern": "",
+ "presentable": false,
+ "primaryKey": false,
+ "required": false,
+ "system": false,
+ "type": "text"
+ }))
+
+ return app.save(collection)
+})
diff --git a/server/pb_migrations/1753102296_updated_server_metrics.js b/server/pb_migrations/1753102296_updated_server_metrics.js
new file mode 100644
index 0000000..262830d
--- /dev/null
+++ b/server/pb_migrations/1753102296_updated_server_metrics.js
@@ -0,0 +1,42 @@
+///
+migrate((app) => {
+ const collection = app.findCollectionByNameOrId("pbc_1998570700")
+
+ // update field
+ collection.fields.addAt(20, new Field({
+ "autogeneratePattern": "",
+ "hidden": false,
+ "id": "text772177811",
+ "max": 0,
+ "min": 0,
+ "name": "details",
+ "pattern": "",
+ "presentable": false,
+ "primaryKey": false,
+ "required": false,
+ "system": false,
+ "type": "text"
+ }))
+
+ return app.save(collection)
+}, (app) => {
+ const collection = app.findCollectionByNameOrId("pbc_1998570700")
+
+ // update field
+ collection.fields.addAt(20, new Field({
+ "autogeneratePattern": "",
+ "hidden": false,
+ "id": "text772177811",
+ "max": 0,
+ "min": 0,
+ "name": "detail",
+ "pattern": "",
+ "presentable": false,
+ "primaryKey": false,
+ "required": false,
+ "system": false,
+ "type": "text"
+ }))
+
+ return app.save(collection)
+})