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
commit ecf3370f53
9 changed files with 323 additions and 21 deletions

View file

@ -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
);