diff options
Diffstat (limited to 'guix/scripts/schema.sql')
-rw-r--r-- | guix/scripts/schema.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/guix/scripts/schema.sql b/guix/scripts/schema.sql index ce90de2b86..5c7925cdf7 100644 --- a/guix/scripts/schema.sql +++ b/guix/scripts/schema.sql @@ -9,6 +9,14 @@ create table if not exists Packages ( guix text not null ); + +create virtual table if not exists Info using fts5( + name, + synopsis, + description, + package +); + create virtual table if not exists Files using fts5( subpath, package |