Navigation Menu

Skip to content

Commit

Permalink
Return index table names correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
piroor committed Aug 3, 2012
1 parent de8ba1e commit 5d587cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/database/index-field.js
Expand Up @@ -61,10 +61,10 @@ IndexField.prototype = {
return this._columnName;
},
get indexColumnName() {
this.domain.indexTableBaseName + this.columnName;
return this.domain.indexTableBaseName + this.columnName;
},
get indexTableName() {
this.domain.indexTableBaseName + this.columnName;
return this.domain.indexTableBaseName + this.columnName;
},
get indexTableKeyType() {
var type = this.type;
Expand Down

0 comments on commit 5d587cd

Please sign in to comment.