Files
MyTube/backend/drizzle/0001_worthless_blur.sql
2025-11-26 15:31:19 -05:00

12 lines
265 B
SQL

CREATE TABLE `download_history` (
`id` text PRIMARY KEY NOT NULL,
`title` text NOT NULL,
`author` text,
`source_url` text,
`finished_at` integer NOT NULL,
`status` text NOT NULL,
`error` text,
`video_path` text,
`thumbnail_path` text,
`total_size` text
);