mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-07-18 23:34:04 +02:00
lint fix
This commit is contained in:
parent
38a4b60a5c
commit
60d879f131
1 changed files with 1 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
exports.up = function (knex) {
|
||||
return knex.schema.alterTable("status_page", function (table) {
|
||||
table.smallint("heartbeat_bar_days").notNullable().defaultTo(0).checkBetween([0, 365]);
|
||||
table.smallint("heartbeat_bar_days").notNullable().defaultTo(0).checkBetween([ 0, 365 ]);
|
||||
});
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue