14 lines
250 B
SQL
14 lines
250 B
SQL
create table assets (
|
|
qr integer unique,
|
|
type text not null,
|
|
brand text,
|
|
name text,
|
|
description text
|
|
) strict;
|
|
|
|
create table worklog (
|
|
asset integer not null,
|
|
timestamp integer not null,
|
|
action text not null
|
|
) strict;
|