5 lines
77 B
SQL
5 lines
77 B
SQL
create table items (
|
|
qr integer unique,
|
|
type text not null
|
|
) strict;
|