#Prisma PostGIS

1 messages · Page 1 of 1 (latest)

frank harness
#

Is there a scheduled release timeline for PostGIS support? Thanks.

fickle thicketBOT
#

You selected the bot's instantaneous insights. Let me compile your answer right away!

fickle thicketBOT
# fickle thicket You selected the bot's instantaneous insights. Let me compile your answer right ...

There is no specific scheduled release date for PostGIS support, but Prisma has provided some timeline indicators:

  • According to the official Prisma Postgres extensions documentation, "PostGIS is coming in 2026." [Postgres extensions docs]

  • The Prisma team has confirmed they are actively designing GIS support and conducted a community survey to shape the feature. [PostGIS/GIS support issue]

  • The current Q4 2025 roadmap (October–December 2025) focuses on Prisma 7, PGVector, Full-Text Search, and graduating preview features — PostGIS is not listed as a priority for this quarter. [3-Month Roadmap 2025]

Current Workaround

In the meantime, you can use Unsupported types in your schema combined with raw SQL queries:

model berlin_pois {
  gid  Int                      @id @default(autoincrement())
  geom Unsupported("geometry")?
  @@index([geom], name: "berlin_poi_idx", type: Gist)
  @@ignore
}

Then query using $queryRaw for PostGIS-specific operations. [PostGIS/GIS support issue]

If PostGIS support is critical for your project, upvoting issue #2789 or issue #1798 is recommended to help prioritize it.

fickle thicketBOT
static aspen
#

Hey!

Thanks for raising this question. We do have this on our roadmap. We are running into a technical bottleneck which is causing the delay. I'll inform our product team and request to get this prioritised.

frank harness
limpid briar
coarse fiber
frank harness
coarse fiber
#

Im not associated with prisma but with their whole push or “plugin rich” ecosystem and calling for plugin authors on Prisma Next - I’m betting you’ll just be waiting on support there instead.