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