20 lines
356 B
SQL
20 lines
356 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;
|
|
|
|
create table info_ram (
|
|
asset integer not null unique,
|
|
capacity integer,
|
|
type text
|
|
) strict;
|