Aventuras/src-tauri/migrations/010_chapter_time_fields.sql
2026-01-08 07:46:52 -07:00

4 lines
224 B
SQL

-- Add start_time and end_time columns to chapters for timeline tracking
-- Stores JSON with years, days, hours, minutes fields
ALTER TABLE chapters ADD COLUMN start_time TEXT;
ALTER TABLE chapters ADD COLUMN end_time TEXT;