summaryrefslogtreecommitdiffstats
path: root/db/knex_migrations/2024-08-24-000-add-cache-bust.js
blob: 3644377c42a1cc25dce097c058beda17cafcb1dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
exports.up = function (knex) {
    return knex.schema
        .alterTable("monitor", function (table) {
            table.boolean("cache_bust").notNullable().defaultTo(false);
        });
};

exports.down = function (knex) {
    return knex.schema
        .alterTable("monitor", function (table) {
            table.dropColumn("cache_bust");
        });
};