mirror of
https://github.com/AventurasTeam/Aventuras.git
synced 2026-04-28 03:40:11 +00:00
4 lines
224 B
SQL
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;
|