uptime-kuma/db/knex_migrations/2024-03-15-0000-show-last-heartbeat.js

17 lines
489 B
JavaScript
Raw Normal View History

2024-04-12 13:32:50 +00:00
exports.up = function (knex) {
// Add new column status_page.show_last_heartbeat
return knex.schema
.alterTable("status_page", function (table) {
table.boolean("show_last_heartbeat").notNullable().defaultTo(false);
});
};
exports.down = function (knex) {
// Drop column status_page.show_last_heartbeat
return knex.schema
.alterTable("status_page", function (table) {
table.dropColumn("show_last_heartbeat");
});
};