mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 23:04:04 +00:00
bf1e3a3d5e
Co-authored-by: Frank Elsinga <frank@elsinga.de>
24 lines
1 KiB
JavaScript
24 lines
1 KiB
JavaScript
exports.up = function (knex) {
|
|
return knex.schema
|
|
.alterTable("stat_daily", function (table) {
|
|
table.float("ping_min").notNullable().defaultTo(0).comment("Minimum ping during this period in milliseconds");
|
|
table.float("ping_max").notNullable().defaultTo(0).comment("Maximum ping during this period in milliseconds");
|
|
})
|
|
.alterTable("stat_minutely", function (table) {
|
|
table.float("ping_min").notNullable().defaultTo(0).comment("Minimum ping during this period in milliseconds");
|
|
table.float("ping_max").notNullable().defaultTo(0).comment("Maximum ping during this period in milliseconds");
|
|
});
|
|
|
|
};
|
|
|
|
exports.down = function (knex) {
|
|
return knex.schema
|
|
.alterTable("stat_daily", function (table) {
|
|
table.dropColumn("ping_min");
|
|
table.dropColumn("ping_max");
|
|
})
|
|
.alterTable("stat_minutely", function (table) {
|
|
table.dropColumn("ping_min");
|
|
table.dropColumn("ping_max");
|
|
});
|
|
};
|