diff options
author | polwex <polwex@sortug.com> | 2025-05-21 15:28:03 +0700 |
---|---|---|
committer | polwex <polwex@sortug.com> | 2025-05-21 15:28:03 +0700 |
commit | 9192e6c7747fd2d3f6a6c5c07d886a0982b53f11 (patch) | |
tree | c94a60a26732b697fa6734bff0fe898d690d2fd4 /src/lib/db/schema.sql | |
parent | e839a5f61f0faa21ca8b4bd5767f7575d5e576ee (diff) |
good tandem good tandem of ideas and implementation
Diffstat (limited to 'src/lib/db/schema.sql')
-rw-r--r-- | src/lib/db/schema.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/lib/db/schema.sql b/src/lib/db/schema.sql index 8d1b288..4506619 100644 --- a/src/lib/db/schema.sql +++ b/src/lib/db/schema.sql @@ -57,6 +57,14 @@ CREATE INDEX IF NOT EXISTS idx_words_pos ON senses(pos); CREATE INDEX IF NOT EXISTS idx_senses_parent ON senses(parent_id); +CREATE TABLE IF NOT EXISTS bookmarks( + word_id INTEGER PRIMARY KEY, + notes TEXT, + created INTEGER NOT NULL, + FOREIGN KEY (word_id) REFERENCES expressions(id) +); +CREATE INDEX IF NOT EXISTS idx_bookmarks ON bookmarks(word_id); + -- Categories table (for noun and verb categories) CREATE TABLE IF NOT EXISTS categories ( |