mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-22 11:47:30 +01:00
27 lines
938 B
JavaScript
27 lines
938 B
JavaScript
|
exports.up = function (knex) {
|
||
|
return knex.schema
|
||
|
.alterTable("stat_daily", function (table) {
|
||
|
table.text("extras").defaultTo(null).comment("Extra statistics during this time period");
|
||
|
})
|
||
|
.alterTable("stat_minutely", function (table) {
|
||
|
table.text("extras").defaultTo(null).comment("Extra statistics during this time period");
|
||
|
})
|
||
|
.alterTable("stat_hourly", function (table) {
|
||
|
table.text("extras").defaultTo(null).comment("Extra statistics during this time period");
|
||
|
});
|
||
|
|
||
|
};
|
||
|
|
||
|
exports.down = function (knex) {
|
||
|
return knex.schema
|
||
|
.alterTable("stat_daily", function (table) {
|
||
|
table.dropColumn("extras");
|
||
|
})
|
||
|
.alterTable("stat_minutely", function (table) {
|
||
|
table.dropColumn("extras");
|
||
|
})
|
||
|
.alterTable("stat_hourly", function (table) {
|
||
|
table.dropColumn("extras");
|
||
|
});
|
||
|
};
|