Create a table for storing drawn svgs

This commit is contained in:
Matt McWilliams 2021-12-07 23:10:41 -05:00
parent f0feeec3b9
commit ea86049947
1 changed files with 9 additions and 0 deletions

9
sql/setup.sql Normal file
View File

@ -0,0 +1,9 @@
CREATE TABLE IF NOT EXISTS svg (
id TEXT PRIMARY KEY,
file TEXT,
starttime INTEGER,
endtime INTEGER,
drawn REAL,
moved REAL,
pen TEXT
);