Add FAQEntry to prisma/schema.prisma
This commit is contained in:
parent
0ad97c3b80
commit
5031bb1596
1 changed files with 6 additions and 0 deletions
|
@ -12,3 +12,9 @@ datasource db {
|
|||
provider = "postgresql"
|
||||
url = env("DATABASE_URL")
|
||||
}
|
||||
|
||||
model FAQEntry {
|
||||
id Int @id @default(autoincrement())
|
||||
question String @unique
|
||||
answer String
|
||||
}
|
Loading…
Reference in a new issue