From e1b3825da3b9783b95fd87c9a3904c1d3f119835 Mon Sep 17 00:00:00 2001 From: mkelvers Date: Sat, 25 Apr 2026 16:32:15 +0200 Subject: [PATCH] fix: remove duplicate watch_list_entry columns from migrations --- migrations/004_add_notifications.sql | 4 +--- migrations/010_add_watch_progress_seconds.sql | 3 +-- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/migrations/004_add_notifications.sql b/migrations/004_add_notifications.sql index 6728f16..a51e1ce 100644 --- a/migrations/004_add_notifications.sql +++ b/migrations/004_add_notifications.sql @@ -1,6 +1,4 @@ --- Add episode tracking to watch list entries -ALTER TABLE watch_list_entry ADD COLUMN current_episode INTEGER DEFAULT 0; -ALTER TABLE watch_list_entry ADD COLUMN last_episode_at DATETIME; +-- Note: watch_list_entry columns now in 001_init.sql -- Add notification preferences CREATE TABLE IF NOT EXISTS notification_preference ( diff --git a/migrations/010_add_watch_progress_seconds.sql b/migrations/010_add_watch_progress_seconds.sql index e7f2040..c29e82b 100644 --- a/migrations/010_add_watch_progress_seconds.sql +++ b/migrations/010_add_watch_progress_seconds.sql @@ -1,2 +1 @@ -ALTER TABLE watch_list_entry -ADD COLUMN current_time_seconds REAL NOT NULL DEFAULT 0; +-- Note: watch_list_entry columns now in 001_init.sql \ No newline at end of file