mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-12 16:44:12 -08:00
e856cb6007
Co-authored-by: Frank Elsinga <[email protected]>
13 lines
365 B
JavaScript
13 lines
365 B
JavaScript
exports.up = function (knex) {
|
|
return knex.schema
|
|
.alterTable("status_page", function (table) {
|
|
table.integer("auto_refresh_interval").defaultTo(300).unsigned();
|
|
});
|
|
};
|
|
|
|
exports.down = function (knex) {
|
|
return knex.schema.alterTable("status_page", function (table) {
|
|
table.dropColumn("auto_refresh_interval");
|
|
});
|
|
};
|