From 9eb3bd0ae2f239d7da73b2cb02f7d078f73fb654 Mon Sep 17 00:00:00 2001 From: mattmcw Date: Sun, 7 Nov 2021 00:08:32 -0400 Subject: [PATCH] Create a table for tracking individual changes in a more granular way than the notes, which track changes for release --- notes/setup.sql | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 notes/setup.sql diff --git a/notes/setup.sql b/notes/setup.sql new file mode 100644 index 0000000..a3c23cd --- /dev/null +++ b/notes/setup.sql @@ -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 +); \ No newline at end of file