Skip to content

Commit 5e73361

Browse files
authored
bump build
1 parent fe8f853 commit 5e73361

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

backend/migrations/20220209144645_proxy_protocol.js

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,9 @@ exports.up = function (knex/*, Promise*/) {
1616
return knex.schema.table('proxy_host', function (proxy_host) {
1717
proxy_host.integer('enable_proxy_protocol').notNull().unsigned().defaultTo(0);
1818
proxy_host.string('load_balancer_ip').notNull().defaultTo('');
19-
})
20-
.then(() => {
21-
logger.info('[' + migrate_name + '] proxy_host Table altered');
22-
});
19+
}).then(() => {
20+
logger.info('[' + migrate_name + '] proxy_host Table altered');
21+
});
2322

2423
};
2524

@@ -33,4 +32,4 @@ exports.up = function (knex/*, Promise*/) {
3332
exports.down = function (knex, Promise) {
3433
logger.warn('[' + migrate_name + '] You can\'t migrate down this one.');
3534
return Promise.resolve(true);
36-
};
35+
};

0 commit comments

Comments
 (0)