mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-15 01:54:10 -08:00
9c8024c7fa
knex requires down function
14 lines
661 B
JavaScript
14 lines
661 B
JavaScript
exports.up = function (knex) {
|
|
return knex.schema
|
|
.alterTable("monitor", function (table) {
|
|
table.string("snmp_community_string", 255).defaultTo("public"); // Add snmp_community_string column
|
|
table.string("snmp_oid").defaultTo(null); // Add oid column
|
|
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
|
|
}; |