You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
1.0 KiB
25 lines
1.0 KiB
10 months ago
|
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");
|
||
|
});
|
||
|
};
|