Files
wkc-website/prisma/schema.prisma
2021-09-13 16:41:54 -04:00

12 lines
236 B
Plaintext

// This is your Prisma schema file,
// learn more about it in the docs: https://pris.ly/d/prisma-schema
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
generator client {
provider = "prisma-client-js"
}