diff options
| author | JP Appel <jeanpierre.appel01@gmail.com> | 2025-08-10 02:30:00 -0400 |
|---|---|---|
| committer | JP Appel <jeanpierre.appel01@gmail.com> | 2025-08-10 02:42:41 -0400 |
| commit | 5d0b36cf87ee94c690d11c0beab48f4dadc6fc52 (patch) | |
| tree | 8459c2e484c4f91019ea4b4999de3516dac6488f /pkg/data/get.go | |
| parent | 7b798789897bd07b03510e073f41e8deadbc460c (diff) | |
Change db schema; remove aliases, add fts5 integration
Greatly simplify db schema by removing alias functionality.
Create fts5 tables for text search over paths, headings, titles, meta,
authors, and links.
Diffstat (limited to 'pkg/data/get.go')
| -rw-r--r-- | pkg/data/get.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/data/get.go b/pkg/data/get.go index 7025c3a..3051e74 100644 --- a/pkg/data/get.go +++ b/pkg/data/get.go @@ -17,7 +17,7 @@ type Fill struct { doc *index.Document } -// Use to build documents and aliases from a database connection +// Use to build documents from a database connection type FillMany struct { docs map[string]*index.Document ids map[string]int |
