mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-07-18 23:34:04 +02:00
11 lines
367 B
JavaScript
11 lines
367 B
JavaScript
exports.up = function (knex) {
|
|
return knex.schema.alterTable("status_page", function (table) {
|
|
table.smallint("heartbeat_bar_days").notNullable().defaultTo(0).checkBetween([0, 365]);
|
|
});
|
|
};
|
|
|
|
exports.down = function (knex) {
|
|
return knex.schema.alterTable("status_page", function (table) {
|
|
table.dropColumn("heartbeat_bar_days");
|
|
});
|
|
};
|