fixed PK
This commit is contained in:
parent
c7af63a7dd
commit
85087687d7
2 changed files with 5 additions and 3 deletions
|
|
@ -4,7 +4,9 @@
|
||||||
# Prisma supports the native connection string format for PostgreSQL, MySQL, SQLite, SQL Server, MongoDB and CockroachDB.
|
# Prisma supports the native connection string format for PostgreSQL, MySQL, SQLite, SQL Server, MongoDB and CockroachDB.
|
||||||
# See the documentation for all the connection string options: https://pris.ly/d/connection-strings
|
# See the documentation for all the connection string options: https://pris.ly/d/connection-strings
|
||||||
|
|
||||||
# DATABASE_URL="postgresql://johndoe:randompassword@localhost:5432/mydb?schema=public"
|
#use this when testing local, remmber to run the proxy command
|
||||||
|
DATABASE_URL="postgresql://postgres:wly9H8gjjmxYfg1@localhost:15432/postgres?schema=public"
|
||||||
|
|
||||||
# DATABASE_URL="postgres://postgres:w2eSd47GJEdqvMf@snakebyte.internal:5432"
|
# DATABASE_URL="postgres://postgres:w2eSd47GJEdqvMf@snakebyte.internal:5432"
|
||||||
DATABASE_URL=postgres://snakebyte:zVB7lgOiKr89dq6@localhost:5432/snakebyte?sslmode=disable
|
# DATABASE_URL=postgres://snakebyte:zVB7lgOiKr89dq6@localhost:5432/snakebyte?sslmode=disable
|
||||||
NODE_PORT=3000
|
NODE_PORT=3000
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ datasource db {
|
||||||
}
|
}
|
||||||
|
|
||||||
model users {
|
model users {
|
||||||
UserId String @id
|
UserId Int @id @default(autoincrement())
|
||||||
Name String?
|
Name String?
|
||||||
Email String?
|
Email String?
|
||||||
Password String?
|
Password String?
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue