Create a table for tracking individual changes in a more granular way than the notes, which track changes for release

This commit is contained in:
Matt McWilliams 2021-11-07 00:08:32 -04:00
parent 9d9e5e260f
commit 9eb3bd0ae2
1 changed files with 18 additions and 0 deletions

18
notes/setup.sql Normal file
View File

@ -0,0 +1,18 @@
CREATE TABLE IF NOT EXISTS renders (
time INTEGER PRIMARY KEY,
commit_id TEXT,
source TEXT,
model TEXT,
stl TEXT,
stl_size INTEGER,
facets INTEGER,
volume REAL,
x REAL,
y REAL,
z REAL,
render_time INTEGER,
source_hash TEXT,
stl_hash TEXT,
openscad TEXT,
cpu TEXT
);