Installed PostGIS, getting error when opening spatial_ref_sys table #1280
-
Hey, I'm trying out supabase and wanted to add a "geography" column to my table, so I've enabled PostGIS in the extensions menu, and added a
I gotta mention I'm new to all of this, so it may just be me not understanding something. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hey @piotrpalek, That one seems to be a bug on the Table Editor UI - which is showing an internal table( PostGIS itself should be fine though, you can query |
Beta Was this translation helpful? Give feedback.
Hey @piotrpalek,
That one seems to be a bug on the Table Editor UI - which is showing an internal table(
extensions.spatial_ref_sys
) as part of thepublic
schema.PostGIS itself should be fine though, you can query
select * from extensions.spatial_ref_sys limit 1;
to see the table has the usual contents(coordinate systems).