From 5630022f6e42771b80d4103e765ef0bf2802be2d Mon Sep 17 00:00:00 2001 From: sbcrumb Date: Fri, 17 Oct 2025 21:07:22 -0400 Subject: [PATCH] fix: db creation --- VERSION | 2 +- core/database.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/VERSION b/VERSION index f90b1af..0bee604 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.3.2 +2.3.3 diff --git a/core/database.py b/core/database.py index fd2d030..35710b2 100644 --- a/core/database.py +++ b/core/database.py @@ -158,7 +158,6 @@ class NFOGuardDatabase: # Create indexes for PostgreSQL cursor.execute("CREATE INDEX IF NOT EXISTS idx_episodes_imdb ON episodes(imdb_id)") - cursor.execute("CREATE INDEX IF NOT EXISTS idx_episodes_video ON episodes(has_video_file)") cursor.execute("CREATE INDEX IF NOT EXISTS idx_movies_video ON movies(has_video_file)") cursor.execute("CREATE INDEX IF NOT EXISTS idx_history_imdb ON processing_history(imdb_id)")