[#3113] added NoDecimal number field option

This commit is contained in:
Gani Georgiev
2023-08-29 18:34:48 +03:00
parent 17974d534e
commit 916c74c218
38 changed files with 222 additions and 140 deletions
+8 -4
View File
@@ -420,7 +420,8 @@ migrate((db) => {
"unique": true,
"options": {
"min": 10,
"max": null
"max": null,
"noDecimals": false
}
}))
@@ -475,7 +476,8 @@ migrate((db) => {
"unique": true,
"options": {
"min": 10,
"max": null
"max": null,
"noDecimals": false
}
}))
@@ -560,7 +562,8 @@ func init() {
"unique": true,
"options": {
"min": 10,
"max": null
"max": null,
"noDecimals": false
}
}` + "`" + `), edit_f2_name_new)
collection.Schema.AddField(edit_f2_name_new)
@@ -632,7 +635,8 @@ func init() {
"unique": true,
"options": {
"min": 10,
"max": null
"max": null,
"noDecimals": false
}
}` + "`" + `), edit_f2_name_new)
collection.Schema.AddField(edit_f2_name_new)