Prisma ORM v6.4.0: Prisma Postgres is GA
Prisma ORM v6.4.0: Prisma Postgres is GA
Prisma Postgres, our hosted PostgreSQL offering, is ready for production!
We’re really excited to finally have a database offering, especially since Prisma Postgres comes standard with:
- Near instant cold starts.
- Caching and connection pooling.
- Real-time event support.
- All with a generous free tier!
For more info, be sure to check out our blog post on Prisma Postgres. If you’re feeling eager, you can get started with our new --db flag in prisma init

We’re also ready to see Prisma Postgres everywhere. With our Instant Prisma Postgres initiative, Prisma Postgres will be available via LLMs so that you can get a database for your next project instantly.
🔧 Prisma ORM 6.4.0
Prisma ORM 6.4.0 has been released and has some great new features:
new prisma.config.ts file
With Prisma ORM 6.4.0, we’re introducing a new configuration file for Prisma ORM in Early Access.
If you’d like to give it a try, just create a prisma.config.ts file like this one:
import path from 'node:path'
export default {
earlyAccess: true, // required while in Early Access
schema: {
kind: 'single', // use 'multi' if you're using the `prismaSchemaFolder` preview feature
filePath: path.join('custom', 'prisma', 'schema.prisma') // key should be 'folderPath' if you're using the `prismaSchemaFolder` preview feature.
},
}To learn more, check out our documentation.
🎨 Improved Optimize Onboarding
Prisma Optimize is our cloud-based tool for diagnosing slow queries or potential problems in your applications. We recently overhauled our onboarding so you can get from signup to optimizing, faster!
✍️ New content in the Prismasphere
As always, we have a number of great articles shared by our team. Here are some highlights:
GreatFrontEnd helps devs excel: GreatFrontEnd helps prospective front end developers ace interviews. Learn about their platform and how Prisma powers it!
The Life of a Prisma Postgres Query: Prisma Postgres is slick, but there’s a lot of technology under the hood. Read on to learn how your queries traverse our infrastructure.
Prisma Postgres in your favorite environment: Our goal is to make your development life easier. When it comes to Prisma Postgres, that means making sure it works with your development environment. Learn how we’re making sure that accessing Prisma Postgres is seamless in Netlify, IDX, Vercel, and beyond!
Best Practices for Prisma ORM and Cursor: LLM-augmented IDEs are doing wonders for developer productivity. To get the most out of them with your Prisma ORM projects, check out this handy guide!