dwldashboard/prisma/schema.prisma

12 lines
236 B
Plaintext
Raw Normal View History

2023-12-19 13:14:09 +00: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")
}