Skip to content
This repository has been archived by the owner on Aug 26, 2022. It is now read-only.

[v0.33] Rename prisma datasource in docs #699

Merged
merged 1 commit into from
Jun 4, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion archived/TUTORIAL.md
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ First let's define the data structure for a post in the database. Open up `api/d
```plaintext{13-18}
// api/db/schema.prisma

datasource DS {
datasource db {
provider = "sqlite"
url = env("DATABASE_URL")
}
Expand Down
2 changes: 1 addition & 1 deletion archived/TUTORIAL2.md
Original file line number Diff line number Diff line change
Expand Up @@ -1048,7 +1048,7 @@ Let's do that now:
```javascript{17,29-36}
// api/db/schema.prisma

datasource DS {
datasource db {
provider = "sqlite"
url = env("DATABASE_URL")
}
Expand Down
2 changes: 1 addition & 1 deletion docs/deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Redwood uses Prisma for managing database access and migrations. The settings in
To use PostgreSQL in production, include this in your `schema.prisma`:

```javascript
datasource DS {
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
Expand Down
2 changes: 1 addition & 1 deletion docs/localPostgresSetup.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ Tell Prisma to use a Postgres database instead of SQLite by updating the `provid

```prisma
// prisma/schema.prisma
datasource DS {
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
Expand Down