fix: remove duplicate watch_list_entry columns from migrations

This commit is contained in:
2026-04-25 16:32:15 +02:00
parent 41c142248d
commit e1b3825da3
2 changed files with 2 additions and 5 deletions

View File

@@ -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 (

View File

@@ -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