codegen: add unique index lookup funcs

This commit is contained in:
2026-02-19 21:40:02 -08:00
parent d6426bba14
commit 3e0a85fcfa
5 changed files with 149 additions and 20 deletions

View File

@@ -41,6 +41,7 @@ create table items (
rowid integer primary key,
description text not null default '',
flavor integer references item_flavor(rowid),
thing text not null unique,
created_at integer not null,
updated_at integer not null
) strict;