feat: multiple streaming servers

This commit is contained in:
2026-01-27 16:56:43 +01:00
parent b623de5bdd
commit 5add3b0e5d
16 changed files with 269 additions and 79 deletions

View File

@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "StreamInfo" ADD COLUMN "streamRegion" TEXT NOT NULL DEFAULT 'eu';

View File

@@ -79,6 +79,7 @@ model StreamInfo {
category String
startedAt DateTime
isLive Boolean
streamRegion String @default("eu")
channelId String
channel Channel @relation(fields: [channelId], references: [id], onDelete: Cascade)