Files
MyTube/backend/drizzle/0003_puzzling_energizer.sql
2025-12-01 22:51:39 -05:00

11 lines
329 B
SQL

CREATE TABLE `subscriptions` (
`id` text PRIMARY KEY NOT NULL,
`author` text NOT NULL,
`author_url` text NOT NULL,
`interval` integer NOT NULL,
`last_video_link` text,
`last_check` integer,
`download_count` integer DEFAULT 0,
`created_at` integer NOT NULL,
`platform` text DEFAULT 'YouTube'
);