Skip to content

Commit

Permalink
Add NicovideoNewVideo
Browse files Browse the repository at this point in the history
  • Loading branch information
SnO2WMaN committed Dec 19, 2023
1 parent f9219bc commit d7b3af6
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -1208,3 +1208,16 @@ enum AbstractGroupingEventType {
EXCLUDE // 排斥したとき
REINCLUDE // 再度入れたとき
}

// ニコニコ動画の新作
model NicovideoNewVideo {
id String @id @default(cuid())
sourceId String @unique /// ニコニコ動画側のID
registeredAt DateTime /// ニコニコ動画側の公開日時
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
checked Boolean @default(false)
}

0 comments on commit d7b3af6

Please sign in to comment.