0
0
mirror of https://github.com/louislam/uptime-kuma.git synced 2024-11-28 10:36:39 +01:00
uptime-kuma/db/knex_migrations/2024-04-26-0000-snmp-monitor.js

15 lines
664 B
JavaScript
Raw Normal View History

exports.up = function (knex) {
return knex.schema
.alterTable("monitor", function (table) {
2024-04-29 23:59:21 +02:00
table.string("snmp_community_string", 255).defaultTo("public"); // Add snmp_community_string column
table.string("snmp_oid").defaultTo(null); // Add oid column
2024-05-01 02:04:59 +02:00
table.enum("snmp_version", [ "1", "2c", "3" ]).defaultTo("2c"); // Add snmp_version column with enum values
table.float("snmp_control_value").defaultTo(null); // Add control_value column as float
table.string("snmp_condition").defaultTo(null); // Add oid column
});
};
exports.down = function (knex) {
// Nothing to do here
2024-05-01 02:04:59 +02:00
};