feat: endpoint for bulk insert video

This commit is contained in:
Rafi Arrafif
2026-01-30 15:56:43 +07:00
parent ab0c8afca4
commit 11a607b4da
7 changed files with 122 additions and 0 deletions

View File

@ -218,6 +218,8 @@ model Video {
deletedAt DateTime?
createdAt DateTime @default(now())
updatedAt DateTime @default(now()) @updatedAt
@@unique([serviceId, code])
@@map("videos")
}