Implement result listing from CLI

Change the schema to include ASN and Network Name in the results table
This commit is contained in:
Arturo Filastò
2018-05-03 18:40:52 +02:00
parent 0c5b6aa37c
commit ecf3370f53
9 changed files with 323 additions and 21 deletions
@@ -16,6 +16,9 @@ CREATE TABLE `results` (
`runtime` REAL,
`summary` JSON,
`done` TINYINT(1),
`country` VARCHAR(2),
`asn` VARCHAR(16),
`network_name` VARCHAR(255),
`data_usage_up` INTEGER,
`data_usage_down` INTEGER
);