mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-07-19 07:44:02 +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) {
|
exports.up = function (knex) {
|
||||||
return knex.schema.alterTable("status_page", function (table) {
|
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