24 lines
456 B
Plaintext
24 lines
456 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 Metadata {
|
|
uri String
|
|
ai_summary_en String?
|
|
ai_summary_zh String?
|
|
ai_summary_zhtw String?
|
|
ai_summary_ja String?
|
|
ai_score Int?
|
|
ai_score_reason String?
|
|
@@id([uri])
|
|
@@index([uri])
|
|
}
|