mirror of
https://github.com/SkalaraAI/skalara-web.git
synced 2025-04-05 13:00:19 -04:00
12 lines
236 B
Plaintext
12 lines
236 B
Plaintext
// 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")
|
|
}
|