summaryrefslogtreecommitdiff
path: root/db/schema.sql
diff options
context:
space:
mode:
Diffstat (limited to 'db/schema.sql')
-rw-r--r--db/schema.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/db/schema.sql b/db/schema.sql
new file mode 100644
index 0000000..b8f8540
--- /dev/null
+++ b/db/schema.sql
@@ -0,0 +1,7 @@
+CREATE TABLE Usage (
+ HardwareAddr INTEGER NOT NULL,
+ StartTime TIMESTAMP NOT NULL,
+ StopTime TIMESTAMP NOT NULL,
+ Egress INTEGER NOT NULL,
+ Ingress INTEGER NOT NULL
+);