Skip to content

Commit

Permalink
Merge pull request #13 from SLonoed/master
Browse files Browse the repository at this point in the history
fix after node-mysql lib changed
  • Loading branch information
rsandor committed Sep 23, 2012
2 parents a168db4 + abb71d2 commit 5e4ed03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion migrate.js
Expand Up @@ -986,7 +986,7 @@ function main() {
var Connect = {
mysql: function() {
// Create the client
client = new require('mysql').createClient(config.mysql);
client = new require('mysql').createConnection(config.mysql);

client.query("show tables;", function(err, result, fields) {
if (err)
Expand Down

0 comments on commit 5e4ed03

Please sign in to comment.