aboutsummaryrefslogtreecommitdiffstats
path: root/migrations
diff options
context:
space:
mode:
Diffstat (limited to 'migrations')
-rw-r--r--migrations/20231230_create.sql6
1 files changed, 6 insertions, 0 deletions
diff --git a/migrations/20231230_create.sql b/migrations/20231230_create.sql
new file mode 100644
index 0000000..23d7282
--- /dev/null
+++ b/migrations/20231230_create.sql
@@ -0,0 +1,6 @@
+CREATE TABLE IF NOT EXISTS frames_received
+(
+ id INTEGER NOT NULL PRIMARY KEY,
+ recevied_at INTEGER,
+ content VARCHAR
+);