Skip to content
This repository was archived by the owner on Apr 28, 2021. It is now read-only.

Commit 4cf2ac2

Browse files
committed
fix migration
1 parent 84a2c99 commit 4cf2ac2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

defaults.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ xmpp:
3131
cert: ./server.crt
3232

3333
database:
34-
uri: mongodb://mongo:27017/hp_mongo
34+
uri: mongodb://192.168.99.101:27017/hp_mongo
3535

3636
secrets:
3737
cookie: secretsauce

migroose.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ module.exports = {
1616
},
1717

1818
needsMigration: function(cb) {
19+
return cb(null, false);
1920
var runner = new Runner(process.cwd(), 'migrootions');
2021
var migrations = runner.getMigrations();
2122
var lastMigration = migrations.slice(migrations.length - 1)[0];

0 commit comments

Comments
 (0)