- model SysProviderVideoSync {
- id String @id @map("_id") @default(auto()) @db.ObjectId
- providerCode String
- providerVideoId String
- videoMediaId String
- lastProviderUpdatedAt BigInt @db.Long
- lastSyncedAt BigInt @db.Long
- syncStatus Int @default(0) @db.Int
- lastError String?
- @@map("sys_providerVideoSync")
- }
|