nikolasburk
prisma studio
command without the previously required --experimental
flag:
npx prisma studio
โ๏ธ Configure Prisma schema location via package.json
for more flexibility
Previously, your schema.prisma
file needed to be available at a specific location when running Prisma CLI commands or provided via the --schema
option when invoking a Prisma CLI command.
With this release, you can configure the location of your Prisma schema via a prisma
property in your `package.json`:
{
"prisma": {
"schema": "path/to/schema.prisma"
}
}
The provided location in package.json
will be the default location of the Prisma schema file for any Prisma CLI command you invoke. Note that you can still override this default location by manually specifying the --schema
option when invoking a Prisma CLI command.
๐ย Learn more in the release notes
For more info and links to documentation, you can read theย release notes.
๐ Feedback wanted: How does introspection work for you?
In the last few releases, we improved Prisma's database introspection with bigger and smaller improvements. We think it is pretty stable now, and would love to hear from you how you have been using prisma introspect
recently!
If you have used introspection in the past, whether it worked well or not so well with your database, please let us know by sharing your feedback on GitHub!
๐ย Help us spread the word about Prismaย ๐
To help spread the word about Prisma, we'd very much appreciate if you wouldย star the repoย ๐ย And if you're excited about the features in this week's release, then help us andย share your excitement on Twitter.