Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix after node-mysql lib changed #13

Merged
merged 1 commit into from Sep 23, 2012
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion migrate.js
Expand Up @@ -986,7 +986,7 @@ function main() {
var Connect = { var Connect = {
mysql: function() { mysql: function() {
// Create the client // 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) { client.query("show tables;", function(err, result, fields) {
if (err) if (err)
Expand Down