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