commit changes to project file

This commit is contained in:
2026-07-08 13:13:46 -04:00
parent 9c9ad0f88e
commit 72081ca13d
4773 changed files with 72755 additions and 21 deletions
@@ -0,0 +1,37 @@
@echo off
REM Add missing base performance indexes to Jellyfin database
echo ========================================
echo Add Base Performance Indexes
echo ========================================
echo.
echo These indexes were missing from InitialCreate
echo Adding 18 essential performance indexes...
echo.
"C:\Program Files\PostgreSQL\18\bin\psql.exe" -U jellyfin -d jellyfin -f sql\add_base_performance_indexes.sql
if %ERRORLEVEL% EQU 0 (
echo.
echo ========================================
echo Success! Base indexes added.
echo ========================================
echo.
echo Indexes created:
echo - 9 on BaseItems
echo - 2 on BaseItemProviders
echo - 2 on MediaStreamInfos
echo - 2 on PeopleBaseItemMap
echo - 3 on UserData
echo.
echo Next: Restart Jellyfin
echo.
) else (
echo.
echo ========================================
echo Failed to add indexes
echo ========================================
echo.
)
pause