chore: add 24/7 check to notification stuff

This commit is contained in:
2025-09-03 00:54:40 +02:00
parent 7072b762d8
commit d327da90ef
5 changed files with 176 additions and 8 deletions

View File

@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "Channel" ADD COLUMN "is247" BOOLEAN NOT NULL DEFAULT false;

View File

@@ -52,6 +52,7 @@ model Channel {
followers Follow[] @relation("ChannelFollowers")
streamKey StreamKey?
obsChatGrantToken String @unique @default(cuid())
is247 Boolean @default(false)
@@index([ownerId])
}