Skip to content

Commit 0702a4e

Browse files
committed
Fix incorrect var
1 parent c0e9d1e commit 0702a4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: backend/migrations/20200410143840_access_list_client_fix.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ exports.up = function (knex/*, Promise*/) {
1414
logger.info('[' + migrate_name + '] Migrating Up...');
1515

1616
return knex.schema.table('access_list', function (access_list) {
17-
proxy_host.renameColumn('satify_any', 'satisfy_any');
17+
access_list.renameColumn('satify_any', 'satisfy_any');
1818
})
1919
.then(() => {
2020
logger.info('[' + migrate_name + '] access_list Table altered');

0 commit comments

Comments
 (0)