Files
WebAdmin3.0/prisma/schema.prisma
2023-04-11 15:08:56 +02:00

20 lines
432 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 {
// NOTE: You probably want to change this to another database later on
provider = "sqlite"
// This value is read from the .env file.
url = env("DATABASE_URL")
}
model Example {
id String @id @default(uuid())
details String
}