blob: 5659d098f4a2cac739b3a5d888fc3a11740be9e1 [file] [log] [blame]
-- kernel versions
DROP TABLE IF EXISTS kernels;
CREATE TABLE kernels (
kernel_idx int(10) unsigned NOT NULL auto_increment PRIMARY KEY,
kernel_hash VARCHAR(35), -- Hash of base + all patches
base VARCHAR(30), -- Base version without patches
printable VARCHAR(100) -- Full version with patches
) TYPE=InnoDB;
-- main jobs table
DROP TABLE IF EXISTS machines;
CREATE TABLE machines (
machine_idx int(10) unsigned NOT NULL auto_increment PRIMARY KEY,
hostname VARCHAR(100), -- hostname
machine_group VARCHAR(80), -- group name
owner VARCHAR(80) -- owner name
) TYPE=InnoDB;
-- main jobs table
DROP TABLE IF EXISTS jobs;
CREATE TABLE jobs (
job_idx int(10) unsigned NOT NULL auto_increment PRIMARY KEY, -- index number
tag VARCHAR(100), -- job key
machine_idx int(10) -- reference to machine table
) TYPE=InnoDB;
-- One entry per patch used, anywhere
DROP TABLE IF EXISTS patches;
CREATE TABLE patches (
kernel_idx INTEGER, -- index number
name VARCHAR(80), -- short name
url VARCHAR(300), -- full URL
hash VARCHAR(35)
) TYPE=InnoDB;
-- test functional results
DROP TABLE IF EXISTS tests;
CREATE TABLE tests (
test_idx int(10) unsigned NOT NULL auto_increment PRIMARY KEY, -- index number
job_idx INTEGER, -- ref to job table
test VARCHAR(30), -- name of test
subdir VARCHAR(60), -- subdirectory name
kernel_idx INTEGER, -- kernel test was AGAINST
status INTEGER, -- test status
reason VARCHAR(100), -- reason for test status
machine_idx int(10) -- reference to machine table
) TYPE=InnoDB;
-- test functional results
DROP TABLE IF EXISTS test_attributes;
CREATE TABLE test_attributes (
test_idx INTEGER, -- ref to test table
attribute VARCHAR(30), -- attribute name (e.g. 'throughput')
value VARCHAR(100) -- attribute value
) TYPE=InnoDB;
-- test functional results
DROP TABLE IF EXISTS iteration_result;
CREATE TABLE iteration_result(
test_idx INTEGER, -- ref to test table
iteration INTEGER, -- integer
attribute VARCHAR(30), -- attribute name (e.g. 'throughput')
value FLOAT -- attribute value (eg 700.1)
) TYPE=InnoDB;
-- status key
DROP TABLE IF EXISTS status;
CREATE TABLE status (
status_idx int(10) unsigned NOT NULL auto_increment PRIMARY KEY , -- numerical status
word VARCHAR(10) -- status word
) TYPE=InnoDB;
INSERT INTO status (word)
VALUES ('NOSTATUS'), ('ERROR'), ('ABORT'), ('FAIL'), ('WARN'), ('GOOD');