mirror of
https://github.com/louislam/uptime-kuma.git
synced 2026-03-03 00:37:01 +00:00
13 lines
357 B
JavaScript
13 lines
357 B
JavaScript
exports.up = function (knex) {
|
|
// Add new column heartbeat.retries
|
|
return knex.schema.alterTable("heartbeat", function (table) {
|
|
table.integer("retries").notNullable().defaultTo(0);
|
|
});
|
|
};
|
|
|
|
exports.down = function (knex) {
|
|
return knex.schema.alterTable("heartbeat", function (table) {
|
|
table.dropColumn("retries");
|
|
});
|
|
};
|