Snapshot.

This commit is contained in:
2023-04-13 20:46:28 -05:00
parent 5e86b40f38
commit b4bc632ded
5 changed files with 95 additions and 1 deletions

7
schema.sql Normal file
View File

@ -0,0 +1,7 @@
DROP TABLE IF EXISTS frames;
CREATE TABLE frames (
id INTEGER PRIMARY KEY AUTOINCREMENT,
created TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
frame TEXT NOT NULL
);