Semicolon consistency.

This commit is contained in:
dgsan 2013-02-14 09:52:00 -07:00
parent ac8f882175
commit 25202bd455
1 changed files with 1 additions and 1 deletions

View File

@ -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.