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