Update db migration: down function

knex requires down function
This commit is contained in:
Matt Visnovsky 2024-04-30 15:11:21 -06:00
parent 138075a2af
commit 9c8024c7fa
1 changed files with 3 additions and 0 deletions

View File

@ -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
};