enumInt field
This commit is contained in:
@@ -14,8 +14,8 @@
|
||||
"default": "HH:mm"
|
||||
},
|
||||
"weekStart": {
|
||||
"type": "enum",
|
||||
"options": ["0", "1"],
|
||||
"type": "enumInt",
|
||||
"options": [0, 1],
|
||||
"default": 0
|
||||
},
|
||||
"thousandSeparator": {
|
||||
|
||||
@@ -32,9 +32,9 @@
|
||||
"default": "HH:mm"
|
||||
},
|
||||
"weekStart": {
|
||||
"type": "enum",
|
||||
"options": ["0", "1"],
|
||||
"default": "1"
|
||||
"type": "enumInt",
|
||||
"options": [0, 1],
|
||||
"default": 1
|
||||
},
|
||||
"thousandSeparator": {
|
||||
"type": "varchar",
|
||||
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
{
|
||||
"params":[
|
||||
{
|
||||
"name":"required",
|
||||
"type":"bool",
|
||||
"default":false
|
||||
},
|
||||
{
|
||||
"name":"options",
|
||||
"type":"array"
|
||||
},
|
||||
{
|
||||
"name":"default",
|
||||
"type":"varchar"
|
||||
},
|
||||
{
|
||||
"name":"translation",
|
||||
"type":"varchar"
|
||||
}
|
||||
],
|
||||
"search":{
|
||||
"basic":false,
|
||||
"advanced":true
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user