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');