19 lines
380 B
Plaintext
19 lines
380 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")
|
|
}
|
|
|
|
model Record {
|
|
id String @id @default(uuid())
|
|
datetime DateTime @default(now())
|
|
name String
|
|
areas String?
|
|
url String @unique
|
|
} |