Add parsing of schema indexes
All checks were successful
CI / release-test (push) Successful in 12s

This commit is contained in:
2025-08-23 16:55:02 -07:00
parent e7f9934f03
commit 8245f89305
5 changed files with 71 additions and 9 deletions

View File

@@ -42,6 +42,7 @@ create table foods (rowid integer primary key,
density real not null default 1,
cook_ratio real not null default 1
) strict;
create index foods_protein on foods(protein);
create table units (rowid integer primary key,