From 25202bd4552542721b6ed9b57a14bb725d17a30c Mon Sep 17 00:00:00 2001 From: dgsan Date: Thu, 14 Feb 2013 09:52:00 -0700 Subject: [PATCH] Semicolon consistency. --- lib/mysql.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mysql.js b/lib/mysql.js index 1399193..63ef991 100644 --- a/lib/mysql.js +++ b/lib/mysql.js @@ -548,7 +548,7 @@ MySQL.prototype.singleIndexSettingsSQL = function (model, prop) { } else { return (kind + ' INDEX `' + prop + '` ' + type + ' (`' + prop + '`) '); } -} +}; MySQL.prototype.indexSettingsSQL = function (model, prop) { // Recycled from alterTable multi-column indexes above, more or less.