borders/prisma/schema.prisma

12 lines
236 B
Plaintext
Raw Normal View History

2022-04-10 16:02:48 +00:00
// This is your Prisma schema file,
// learn more about it in the docs: https://pris.ly/d/prisma-schema
2022-03-22 17:42:07 +00:00
generator client {
provider = "prisma-client-js"
}
2022-04-10 16:02:48 +00:00
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
2022-03-22 17:42:07 +00:00
}