max length for number separators

This commit is contained in:
Yuri Kuznetsov
2014-03-13 10:31:42 +02:00
parent 9f33e2af26
commit 1ae4ac04d6
2 changed files with 8 additions and 4 deletions
@@ -21,12 +21,14 @@
},
"thousandSeparator": {
"type": "varchar",
"default": ","
"default": ",",
"maxLength": 1
},
"decimalMark": {
"type": "varchar",
"default": ".",
"required": true
"required": true,
"maxLength": 1
},
"defaultCurrency": {
"type": "enum",
@@ -40,12 +40,14 @@
},
"thousandSeparator": {
"type": "varchar",
"default": ","
"default": ",",
"maxLength": 1
},
"decimalMark": {
"type": "varchar",
"default": ".",
"required": true
"required": true,
"maxLength": 1
},
"currencyList": {
"type": "array",