Files
uptime-kuma/db/knex_migrations/2025-10-24-0000-show-only-last-heartbeat.js
2025-11-25 00:28:42 +00:00

16 lines
508 B
JavaScript

exports.up = function (knex) {
// Add new column status_page.show_only_last_heartbeat
return knex.schema
.alterTable("status_page", function (table) {
table.boolean("show_only_last_heartbeat").notNullable().defaultTo(false);
});
};
exports.down = function (knex) {
// Drop column status_page.show_only_last_heartbeat
return knex.schema
.alterTable("status_page", function (table) {
table.dropColumn("show_only_last_heartbeat");
});
};