-
Notifications
You must be signed in to change notification settings - Fork 849
Docs for Prisma ORM v6.16.0 #7096
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+610
−580
Merged
Changes from all commits
Commits
Show all changes
47 commits
Select commit
Hold shift + click to select a range
d6b1bb3
update docs for sql views
nikolasburk 6547b29
Update content/200-orm/100-prisma-schema/20-data-model/40-views.mdx
nikolasburk 07b270a
add improvements
nikolasburk cead47b
Merge branch 'docs/6.14.0' of github.com:prisma/docs into docs/6.14.0
nikolasburk d971a75
minor improvements
nikolasburk 95620a8
minor improvements in view docs
nikolasburk bf51ce6
polished view docs
nikolasburk 1d2afdc
update notes about query compiler in ga
nikolasburk 89631fa
fix merge conflicts
nikolasburk 604eb59
update preview feature reference
nikolasburk 2514cca
update management api guide
nikolasburk 1bdecb6
reworked partner oauth section
nikolasburk 12ea903
add docs for creating oauth apps
nikolasburk 3fad666
deprecate postgres extensions
nikolasburk 3208b24
resolve merge conflict
nikolasburk 03d4da0
fix remaining merge conflicts
nikolasburk 62a4bbd
Merge branch 'main' into docs/6.16.0
nikolasburk be83cf2
fix remaining merge conflicts
nikolasburk cdf1558
Merge branch 'docs/6.16.0' of github.com:prisma/docs into docs/6.16.0
nikolasburk caed9fb
Update content/200-orm/100-prisma-schema/80-postgresql-extensions.mdx
nikolasburk 1569814
Update content/200-orm/100-prisma-schema/80-postgresql-extensions.mdx
nikolasburk fc1c971
Update content/200-orm/200-prisma-client/000-setup-and-configuration/…
nikolasburk fc2dee5
fix broken links
nikolasburk 533428e
Merge branch 'docs/6.16.0' of github.com:prisma/docs into docs/6.16.0
nikolasburk 706c2ec
fix broken tab item
nikolasburk a438d2e
fix broken mdx
nikolasburk acfe3df
add docs for vs code login and direct tcp connections
nikolasburk 206d2ed
update query compiler into ga
nikolasburk 7b39a6e
update driver adapters into ga
nikolasburk 751b2c7
update prisma-client generator to ga
nikolasburk 6eb0276
add prisma-client example
nikolasburk 7a11f13
Update content/200-orm/200-prisma-client/000-setup-and-configuration/…
nikolasburk a6093ed
Update content/200-orm/200-prisma-client/000-setup-and-configuration/…
nikolasburk 23c534f
Apply suggestions from code review
nikolasburk 41f1200
fix minor issues
nikolasburk 119edd8
Merge branch 'docs/6.16.0' of github.com:prisma/docs into docs/6.16.0
nikolasburk 9f1a436
Merge branch 'main' into docs/6.16.0
nikolasburk 9b98e6c
fix broken mdx
nikolasburk 2cb83f4
Merge branch 'docs/6.16.0' of github.com:prisma/docs into docs/6.16.0
nikolasburk 80b3f79
fix links
nikolasburk 6c0b3cc
Update content/200-orm/200-prisma-client/000-setup-and-configuration/…
nikolasburk edf852b
Merge branch 'main' of github.com:prisma/docs into docs/6.16.0
nikolasburk 0f373b2
Merge branch 'main' into docs/6.16.0
nikolasburk 460bdea
minor changes
nikolasburk fbfaf11
Merge branch 'docs/6.16.0' of github.com:prisma/docs into docs/6.16.0
nikolasburk a263b4b
remove note about no login for local ppg management in vs code
nikolasburk 506d54c
Merge branch 'main' into docs/6.16.0
nikolasburk File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -305,24 +305,10 @@ You can use Prisma ORM along with the PlanetScale serverless driver using the [` | |
|
||
:::info | ||
|
||
This feature is available in Preview from Prisma ORM versions 5.4.2 and later. | ||
This feature has been Generally Available since Prisma ORM [v6.16.0](https://pris.ly/release/6.16.0). | ||
|
||
::: | ||
|
||
To get started, enable the `driverAdapters` Preview feature flag: | ||
|
||
```prisma | ||
generator client { | ||
provider = "prisma-client-js" | ||
previewFeatures = ["driverAdapters"] | ||
} | ||
``` | ||
|
||
Generate Prisma Client: | ||
|
||
```bash | ||
npx prisma generate | ||
``` | ||
|
||
:::info | ||
|
||
|
@@ -336,7 +322,7 @@ DATABASE_URL='mysql://johndoe:[email protected]/clear_nights | |
|
||
Install the Prisma ORM adapter for PlanetScale, PlanetScale serverless driver and `undici` packages: | ||
|
||
```bash | ||
```terminal | ||
npm install @prisma/adapter-planetscale undici | ||
``` | ||
nikolasburk marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.