chore: change server region

This commit is contained in:
2026-02-06 17:41:51 +01:00
parent f486c3b28e
commit a1727b9a3d
9 changed files with 33 additions and 39 deletions

View File

@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "StreamInfo" ALTER COLUMN "streamRegion" SET DEFAULT 'hq';

View File

@@ -0,0 +1 @@
UPDATE "StreamInfo" SET "streamRegion" = 'hq' WHERE "streamRegion" = 'eu';

View File

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