animation/sql/setup.sql

17 lines
245 B
MySQL
Raw Normal View History

2021-12-08 04:10:41 +00:00
CREATE TABLE IF NOT EXISTS svg (
id TEXT PRIMARY KEY,
file TEXT,
starttime INTEGER,
endtime INTEGER,
drawn REAL,
moved REAL,
paths INTEGER,
total REAL,
ratio REAL,
xmin REAL,
xmax REAL,
ymin REAL,
ymax REAL,
pen TEXT,
hash TEXT
2021-12-08 04:10:41 +00:00
);