Skip to content

Commit a7031d6

Browse files
authored
feat: switch database to PostgreSQL (#97)
* feat: switch database to postgresql * docs: update README.md
1 parent 943286a commit a7031d6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
- Prisma.js
2323
- tRPC
2424
- tailwindcss
25-
- MySQL (not part of repository)
25+
- PostgreSQL (not part of repository)
2626

2727
## Development Guide
2828

@@ -58,7 +58,7 @@
5858

5959
## Deployment
6060

61-
It is recommended to deply using [Vercel](https://vercel.com), simply select Next.js project and fill-in all environment variables will do. Remember to also create a production-ready MySQL database for data persistence. Here is our deployed web [Parachute](https://parachute.fyi).
61+
It is recommended to deply using [Vercel](https://vercel.com), simply select Next.js project and fill-in all environment variables will do. Remember to also create a production-ready PostgreSQL database for data persistence. Here is our deployed web [Parachute](https://parachute.fyi).
6262

6363
## Star History
6464

prisma/schema.prisma

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ generator client {
33
}
44

55
datasource db {
6-
provider = "mysql"
6+
provider = "postgresql"
77
url = env("DATABASE_URL")
88
relationMode = "prisma"
99
}

0 commit comments

Comments
 (0)