[Fix #430] Handle columns from activerecord-postgis-adapter (#694)
Same problem returned by @janosrusiczki in #430
Spatial columns with activerecord-postgis-adapter (5.2.2) are not displayed nice
```
# name :string(3)
# active :boolean default(FALSE), not null
# geom :geometry({:srid= geometry, 4326
```
That's come from activerecord-postgis-adapter, with redefined columns as such :
```
#<ActiveRecord::ConnectionAdapters::PostGIS::SpatialColumn
@sql_type="geometry(Geometry,4326)",
@geo_type="Geometry",
@geometric_type=RGeo::Feature::Geometry,
@srid=4326,
@limit={:srid=>4326, :type=>"geometry"}
[...]
>
```
This fix displays them like this :
```
# name :string(3)
# active :boolean default(FALSE), not null
# geometry :geometry geometry, 4326
```
Another possibility would have been to display them as below, but it involves a lot of extra-spaces for other columns.
```
# name :string(3)
# active :boolean default(FALSE), not null
# geometry :geometry(Geometry, 4326)
```
Showing
Please
register
or
sign in
to comment