Got cool stuff working
This commit is contained in:
13
migrations/1_initial.sql
Normal file
13
migrations/1_initial.sql
Normal file
@@ -0,0 +1,13 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user