apply migration to correct table

This commit is contained in:
Kyle Klaus
2020-05-04 16:56:26 -07:00
committed by GitHub
parent c0e9d1eb2f
commit 31f1d304d6

View File

@ -14,7 +14,7 @@ exports.up = function (knex/*, Promise*/) {
logger.info('[' + migrate_name + '] Migrating Up...');
return knex.schema.table('access_list', function (access_list) {
proxy_host.renameColumn('satify_any', 'satisfy_any');
access_list.renameColumn('satify_any', 'satisfy_any');
})
.then(() => {
logger.info('[' + migrate_name + '] access_list Table altered');