0f61d7ee1b
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
12 lines
348 B
JavaScript
12 lines
348 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");
|
|
});
|
|
};
|