implements MOL-180: make run_test.py compatible with FUEL master
diff --git a/scripts/data_extractor.py b/scripts/data_extractor.py
index d3ba1ea..1f30b77 100644
--- a/scripts/data_extractor.py
+++ b/scripts/data_extractor.py
@@ -16,12 +16,17 @@
md5 text);
CREATE TABLE params_combination (id integer primary key, {params});
-CREATE TABLE param (id integer primary key, name text, type text);
+
+CREATE TABLE param (id integer primary key, name text, type text, descr text);
+
+CREATE TABLE lab (id integer primary key, name text, descr text);
CREATE TABLE result (build_id integer,
- params_combination integer,
+ time datetime,
+ lab_id integer,
+ params_combination_id integer,
bandwith float,
- deviation float);
+ meta text);
"""