2024-04-26 19:05:56 -06:00
|
|
|
exports.up = function (knex) {
|
|
|
|
return knex.schema
|
|
|
|
.alterTable("monitor", function (table) {
|
2024-05-08 10:06:20 -06:00
|
|
|
table.string("snmp_oid").defaultTo(null);
|
|
|
|
table.enum("snmp_version", [ "1", "2c", "3" ]).defaultTo("2c");
|
2024-06-05 15:37:47 -06:00
|
|
|
table.string("json_path_operator").defaultTo(null);
|
2024-04-26 19:05:56 -06:00
|
|
|
});
|
2024-04-30 15:10:43 -06:00
|
|
|
};
|
2024-04-30 15:11:21 -06:00
|
|
|
|
|
|
|
exports.down = function (knex) {
|
2024-04-30 18:06:03 -06:00
|
|
|
return knex.schema.alterTable("monitor", function (table) {
|
|
|
|
table.dropColumn("snmp_oid");
|
|
|
|
table.dropColumn("snmp_version");
|
2024-06-05 15:37:47 -06:00
|
|
|
table.dropColumn("json_path_operator");
|
2024-04-30 18:06:03 -06:00
|
|
|
});
|
2024-04-30 18:04:59 -06:00
|
|
|
};
|