aboutsummaryrefslogtreecommitdiff
path: root/backend/storage/migrations
diff options
context:
space:
mode:
Diffstat (limited to 'backend/storage/migrations')
-rw-r--r--backend/storage/migrations/000_init.sql6
1 files changed, 6 insertions, 0 deletions
diff --git a/backend/storage/migrations/000_init.sql b/backend/storage/migrations/000_init.sql
new file mode 100644
index 0000000..6dd385c
--- /dev/null
+++ b/backend/storage/migrations/000_init.sql
@@ -0,0 +1,6 @@
+CREATE TABLE IF NOT EXISTS stats(
+ id INTEGER PRIMARY KEY,
+ visit INTEGER NOT NULL,
+ origin TEXT NOT NULL,
+ target TEXT NOT NULL
+);