first commit

This commit is contained in:
2026-02-28 02:44:41 +03:00
commit 97fb289fe7
70 changed files with 11928 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
-- Add currentSeason column to content table
ALTER TABLE "content" ADD COLUMN "currentSeason" INTEGER;
-- Create index for currentSeason field
CREATE INDEX "content_current_season_idx" ON "content"("currentSeason");