mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 15:53:02 +10:00
add document title
This commit is contained in:
@ -10,8 +10,9 @@ datasource db {
|
|||||||
model Document {
|
model Document {
|
||||||
id Int @id @default(autoincrement())
|
id Int @id @default(autoincrement())
|
||||||
userId Int
|
userId Int
|
||||||
document String
|
|
||||||
User User @relation(fields: [userId], references: [id], onDelete: Cascade)
|
User User @relation(fields: [userId], references: [id], onDelete: Cascade)
|
||||||
|
title String
|
||||||
|
document String
|
||||||
Recipient Recipient[]
|
Recipient Recipient[]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user