Skip to content

Commit d995f37

Browse files
committed
Merge pull request #158 from Leventhan/Leventhan-patch-1
Fix limit for PostGIS geometry column types
2 parents 3ed9d79 + abc5f0a commit d995f37

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lib/rails_erd/domain/attribute.rb

+1
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ def type_description
125125
# Returns any non-standard limit for this attribute. If a column has no
126126
# limit or uses a default database limit, this method returns +nil+.
127127
def limit
128+
return if native_type == 'geometry'
128129
return column.limit.to_i if column.limit != native_type[:limit] and column.limit.respond_to?(:to_i)
129130
column.precision.to_i if column.precision != native_type[:precision] and column.precision.respond_to?(:to_i)
130131
end

0 commit comments

Comments
 (0)