Skip to content

Commit

Permalink
results
Browse files Browse the repository at this point in the history
  • Loading branch information
mren committed Feb 9, 2014
1 parent 55b4551 commit e881794
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/migrate
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ pg.connect(databaseUrl, function(err, client, done) {
if(err) {
throw err;
}
migrate('schema', client, function(err, result) {
migrate('schema', client, function(err, results) {
if(err) {
console.error(err);
}
if(results) {
console.log(result);
console.log(results);
console.log('done');
}
done()
Expand Down

0 comments on commit e881794

Please sign in to comment.