rhino_project_core 0.30.0.alpha.6 → 0.30.0.alpha.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 00cd621849bf263dd9915b3abf6fd183a4a314710147b2650a51424ae6df4c82
|
4
|
+
data.tar.gz: b9837b83fd0cf963da31dc90f830b9a05fff1cf433f42692ff0fc8c83810e183
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 65c31457636e04b633912fb9eb1b164d042f7d55c8e65a4a1f2f48ea40900ab2e86dc110f2f4792928cefd424a0a7119334cc7c3589939f77b32cad7c203acf6
|
7
|
+
data.tar.gz: 120246ea15e61cdbd792d3817ee5b1c6feb225b3f7b4fe5222bdeae9d9d025eee006ee3dea80007f49859a3e3514cb4fef982eebec19b91a5de124cc260988f0
|
@@ -77,6 +77,12 @@ module Rhino
|
|
77
77
|
# Identifier is a special format for identification on the front end
|
78
78
|
format = :identifier if name == identifier_property
|
79
79
|
|
80
|
+
# Float is double precision in postgres by default
|
81
|
+
if type == :float
|
82
|
+
type = :number
|
83
|
+
format = :double
|
84
|
+
end
|
85
|
+
|
80
86
|
# Dates and times are strings
|
81
87
|
if DATE_FORMATS.include?(type)
|
82
88
|
format = type
|
data/lib/rhino/version.rb
CHANGED