2024-04-26 18:05:56 -07:00
|
|
|
exports.up = function (knex) {
|
|
|
|
return knex.schema
|
|
|
|
.alterTable("monitor", function (table) {
|
2024-04-29 14:59:21 -07:00
|
|
|
table.string("snmp_community_string", 255).defaultTo("public"); // Add snmp_community_string column
|
2024-04-30 14:10:43 -07:00
|
|
|
table.string("snmp_oid").defaultTo(null); // Add oid column
|
2024-04-26 18:05:56 -07:00
|
|
|
table.enum("snmp_version", ["1", "2c", "3"]).defaultTo("2c"); // Add snmp_version column with enum values
|
2024-04-30 14:10:43 -07:00
|
|
|
table.float("snmp_control_value").defaultTo(null); // Add control_value column as float
|
|
|
|
table.string("snmp_condition").defaultTo(null); // Add oid column
|
2024-04-26 18:05:56 -07:00
|
|
|
});
|
2024-04-30 14:10:43 -07:00
|
|
|
};
|
2024-04-26 18:05:56 -07:00
|
|
|
};
|