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:
parent
1f77238cd4
commit
26f0a720e2
@ -515,7 +515,7 @@ module.exports = class Database extends Observable {
|
||||
|
||||
initTypeMap() {
|
||||
this.typeMap = {
|
||||
'Autocomplete': 'text'
|
||||
'AutoComplete': 'text'
|
||||
, 'Currency': 'real'
|
||||
, 'Int': 'integer'
|
||||
, 'Float': 'real'
|
||||
|
@ -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 {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -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)'
|
||||
|
@ -269,7 +269,7 @@ module.exports = class sqliteDatabase extends Database {
|
||||
|
||||
initTypeMap() {
|
||||
this.typeMap = {
|
||||
'Autocomplete': 'text'
|
||||
'AutoComplete': 'text'
|
||||
, 'Currency': 'real'
|
||||
, 'Int': 'integer'
|
||||
, 'Float': 'real'
|
||||
|
Loading…
Reference in New Issue
Block a user