Skip to content

Commit

Permalink
fix(api): remove unused table schema
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcfps committed Feb 14, 2025
1 parent bb22fad commit 33b5b4a
Showing 1 changed file with 0 additions and 23 deletions.
23 changes: 0 additions & 23 deletions apps/api/prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -332,29 +332,6 @@ model Resource {
@@map("resources")
}

model FileParseRecord {
/// Primary key
pk BigInt @id @default(autoincrement())
/// Record id
recordId String @unique @map("record_id")
/// Resource id
resourceId String @map("resource_id")
/// Resource identifier
identifier String @map("identifier")
/// Which parse record this record is reused from (target record id)
reuseFrom String? @map("reuse_from")
/// File storage key
fileKey String @map("file_key")
/// Create timestamp
createdAt DateTime @default(now()) @map("created_at") @db.Timestamptz()
/// Update timestamp
updatedAt DateTime @updatedAt @map("updated_at") @db.Timestamptz()
/// Soft delete timestamp
deletedAt DateTime? @map("deleted_at") @db.Timestamptz()
@@map("file_parse_records")
}

model Document {
/// Primary key
pk BigInt @id @default(autoincrement())
Expand Down

0 comments on commit 33b5b4a

Please sign in to comment.