TMP: codetables
Some checks failed
CI / build-docker (push) Successful in 3s
CI / build-docker-bootstrap (push) Has been skipped
CI / release-test (push) Failing after 9s

This commit is contained in:
2026-03-19 23:36:51 -07:00
parent f8664ed514
commit 01e37a0e07
8 changed files with 208 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
create table item_types (
rowid integer primary key,
name text not null unique
) strict;
insert into item_types(rowid, name) values
(1, 'first-type'),
(2, 'second-type'),
(3, 'third-type');