summaryrefslogtreecommitdiffstats
path: root/db/knex_migrations/2024-08-24-0000-conditions.js
blob: 96352fdc436ea96947b1426ae6affa348fd97d15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
exports.up = function (knex) {
    return knex.schema
        .alterTable("monitor", function (table) {
            table.text("conditions").notNullable().defaultTo("[]");
        });
};

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