mirror of
https://github.com/Tony0410/readlater.git
synced 2026-05-24 22:01:41 +08:00
Initial commit: ReadLater v1.0
- Save articles via URL or bookmarklet - Clean dark reader with customizable fonts/sizing - Text-to-speech with browser + Kokoro support - Speed control up to 3x - Favorites and archive - SQLite database with Drizzle ORM - Docker deployment ready Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
19
drizzle/0000_black_lucky_pierre.sql
Normal file
19
drizzle/0000_black_lucky_pierre.sql
Normal file
@@ -0,0 +1,19 @@
|
||||
CREATE TABLE `articles` (
|
||||
`id` text PRIMARY KEY NOT NULL,
|
||||
`url` text NOT NULL,
|
||||
`title` text NOT NULL,
|
||||
`author` text,
|
||||
`site_name` text,
|
||||
`excerpt` text,
|
||||
`content` text NOT NULL,
|
||||
`text_content` text NOT NULL,
|
||||
`lead_image` text,
|
||||
`word_count` integer DEFAULT 0,
|
||||
`reading_progress` integer DEFAULT 0,
|
||||
`is_favorite` integer DEFAULT false,
|
||||
`is_archived` integer DEFAULT false,
|
||||
`tags` text DEFAULT '[]',
|
||||
`created_at` integer,
|
||||
`updated_at` integer,
|
||||
`read_at` integer
|
||||
);
|
||||
Reference in New Issue
Block a user