Navigation Menu

Skip to content

Commit

Permalink
Fix genreated table names
Browse files Browse the repository at this point in the history
  • Loading branch information
piroor committed Aug 3, 2012
1 parent 2a65ba9 commit de8ba1e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/database/domain.js
Expand Up @@ -149,7 +149,7 @@ Domain.prototype = {
},

get termsTableName() {
return this.indexTableBaseName + '_BigramTerms';
return this.indexTableBaseName + 'BigramTerms';
},

get synonymTableName() {
Expand Down
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;
this.domain.indexTableBaseName + this.columnName;
},
get indexTableName() {
this.domain.indexTableBaseName + '_' + this.columnName;
this.domain.indexTableBaseName + this.columnName;
},
get indexTableKeyType() {
var type = this.type;
Expand Down

0 comments on commit de8ba1e

Please sign in to comment.