We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3ed9d79 + abc5f0a commit d995f37Copy full SHA for d995f37
lib/rails_erd/domain/attribute.rb
@@ -125,6 +125,7 @@ def type_description
125
# Returns any non-standard limit for this attribute. If a column has no
126
# limit or uses a default database limit, this method returns +nil+.
127
def limit
128
+ return if native_type == 'geometry'
129
return column.limit.to_i if column.limit != native_type[:limit] and column.limit.respond_to?(:to_i)
130
column.precision.to_i if column.precision != native_type[:precision] and column.precision.respond_to?(:to_i)
131
end
0 commit comments