faq-website/prisma/schema.prisma

20 lines
512 B
Text
Raw Permalink Normal View History

2024-07-06 00:26:58 +00:00
// This is your Prisma schema file,
// learn more about it in the docs: https://pris.ly/d/prisma-schema
// Looking for ways to speed up your queries, or scale easily with your serverless or edge functions?
// Try Prisma Accelerate: https://pris.ly/cli/accelerate-init
generator client {
provider = "prisma-client-js"
}
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
2024-07-06 01:07:57 +00:00
model faqEntry {
2024-07-06 01:07:57 +00:00
id Int @id @default(autoincrement())
question String @unique
answer String
}