summaryrefslogtreecommitdiffstats
path: root/db/knex_migrations/2023-12-20-0000-alter-status-page.js
blob: 61ef5d607c952491db505965be0136af746fba30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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");
    });
};