Update db migration: down function

knex requires down function
pull/4717/head
Matt Visnovsky 7 months ago
parent 138075a2af
commit 9c8024c7fa

@ -8,4 +8,7 @@ exports.up = function (knex) {
table.string("snmp_condition").defaultTo(null); // Add oid column
});
};
exports.down = function (knex) {
// Nothing to do here
};
Loading…
Cancel
Save