fishing-api/prisma/schema.prisma

18 lines
301 B
Plaintext
Raw Normal View History

2024-02-15 02:01:36 +01:00
// This is your Prisma schema file,
// learn more about it in the docs: https://pris.ly/d/prisma-schema
generator client {
provider = "prisma-client-js"
}
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
model User {
id String @id
name String
color String
}