mirror of
https://github.com/louislam/uptime-kuma.git
synced 2026-06-23 04:10:14 +00:00
0f61d7ee1b
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
14 lines
474 B
JavaScript
14 lines
474 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");
|
|
});
|
|
};
|