2
0
mirror of https://github.com/frappe/books.git synced 2024-11-10 07:40:55 +00:00

fix: Autocomplete -> AutoComplete

This commit is contained in:
Faris Ansari 2019-10-26 20:16:34 +05:30
parent 1f77238cd4
commit 26f0a720e2
4 changed files with 5 additions and 5 deletions

View File

@ -515,7 +515,7 @@ module.exports = class Database extends Observable {
initTypeMap() {
this.typeMap = {
'Autocomplete': 'text'
'AutoComplete': 'text'
, 'Currency': 'real'
, 'Int': 'integer'
, 'Float': 'real'

View File

@ -193,7 +193,7 @@ module.exports = class HTTPClient extends Observable {
initTypeMap() {
this.typeMap = {
'Autocomplete': true
'AutoComplete': true
, 'Currency': true
, 'Int': true
, 'Float': true
@ -227,4 +227,4 @@ module.exports = class HTTPClient extends Observable {
}
}
}

View File

@ -178,7 +178,7 @@ module.exports = class mysqlDatabase extends Database{
init_typeMap() {
this.typeMap = {
'Autocomplete': 'VARCHAR(140)'
'AutoComplete': 'VARCHAR(140)'
, 'Currency': 'real'
, 'Int': 'INT'
, 'Float': 'decimal(18,6)'

View File

@ -269,7 +269,7 @@ module.exports = class sqliteDatabase extends Database {
initTypeMap() {
this.typeMap = {
'Autocomplete': 'text'
'AutoComplete': 'text'
, 'Currency': 'real'
, 'Int': 'integer'
, 'Float': 'real'