mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-06-19 10:46:48 +02:00
11 lines
343 B
JavaScript
11 lines
343 B
JavaScript
exports.up = function (knex) {
|
|
return knex.schema.alterTable("status_page", function (table) {
|
|
table.integer("heartbeat_bar_days").notNullable().defaultTo(0);
|
|
});
|
|
};
|
|
|
|
exports.down = function (knex) {
|
|
return knex.schema.alterTable("status_page", function (table) {
|
|
table.dropColumn("heartbeat_bar_days");
|
|
});
|
|
};
|