summaryrefslogtreecommitdiffstats
path: root/db/knex_migrations/2024-01-22-0000-stats-extras.js
blob: b92e8892a98f1de047eb2c06a42d8ab6d35503ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
exports.up = function (knex) {
    return knex.schema
        .alterTable("stat_daily", function (table) {
            table.text("extras").defaultTo(null).comment("Extra statistics during this time period");
        })
        .alterTable("stat_minutely", function (table) {
            table.text("extras").defaultTo(null).comment("Extra statistics during this time period");
        })
        .alterTable("stat_hourly", function (table) {
            table.text("extras").defaultTo(null).comment("Extra statistics during this time period");
        });

};

exports.down = function (knex) {
    return knex.schema
        .alterTable("stat_daily", function (table) {
            table.dropColumn("extras");
        })
        .alterTable("stat_minutely", function (table) {
            table.dropColumn("extras");
        })
        .alterTable("stat_hourly", function (table) {
            table.dropColumn("extras");
        });
};