summaryrefslogtreecommitdiffstats
path: root/db/knex_migrations/2023-08-16-0000-create-uptime.js
diff options
context:
space:
mode:
Diffstat (limited to 'db/knex_migrations/2023-08-16-0000-create-uptime.js')
-rw-r--r--db/knex_migrations/2023-08-16-0000-create-uptime.js41
1 files changed, 41 insertions, 0 deletions
diff --git a/db/knex_migrations/2023-08-16-0000-create-uptime.js b/db/knex_migrations/2023-08-16-0000-create-uptime.js
new file mode 100644
index 0000000..ab89931
--- /dev/null
+++ b/db/knex_migrations/2023-08-16-0000-create-uptime.js
@@ -0,0 +1,41 @@
+exports.up = function (knex) {
+ return knex.schema
+ .createTable("stat_minutely", function (table) {
+ table.increments("id");
+ table.comment("This table contains the minutely aggregate statistics for each monitor");
+ table.integer("monitor_id").unsigned().notNullable()
+ .references("id").inTable("monitor")
+ .onDelete("CASCADE")
+ .onUpdate("CASCADE");
+ table.integer("timestamp")
+ .notNullable()
+ .comment("Unix timestamp rounded down to the nearest minute");
+ table.float("ping").notNullable().comment("Average ping in milliseconds");
+ table.smallint("up").notNullable();
+ table.smallint("down").notNullable();
+
+ table.unique([ "monitor_id", "timestamp" ]);
+ })
+ .createTable("stat_daily", function (table) {
+ table.increments("id");
+ table.comment("This table contains the daily aggregate statistics for each monitor");
+ table.integer("monitor_id").unsigned().notNullable()
+ .references("id").inTable("monitor")
+ .onDelete("CASCADE")
+ .onUpdate("CASCADE");
+ table.integer("timestamp")
+ .notNullable()
+ .comment("Unix timestamp rounded down to the nearest day");
+ table.float("ping").notNullable().comment("Average ping in milliseconds");
+ table.smallint("up").notNullable();
+ table.smallint("down").notNullable();
+
+ table.unique([ "monitor_id", "timestamp" ]);
+ });
+};
+
+exports.down = function (knex) {
+ return knex.schema
+ .dropTable("stat_minutely")
+ .dropTable("stat_daily");
+};