guix-cuirass/src/schema.sql

64 lines
1.8 KiB
MySQL
Raw Normal View History

BEGIN TRANSACTION;
CREATE TABLE Specifications (
repo_name TEXT NOT NULL PRIMARY KEY,
url TEXT NOT NULL,
load_path TEXT NOT NULL,
file TEXT NOT NULL,
proc TEXT NOT NULL,
arguments TEXT NOT NULL,
-- The following columns are optional.
branch TEXT,
tag TEXT,
revision TEXT,
no_compile_p INTEGER
);
2016-07-26 00:36:12 +02:00
CREATE TABLE Stamps (
specification TEXT NOT NULL PRIMARY KEY,
2016-07-26 00:36:12 +02:00
stamp TEXT NOT NULL,
FOREIGN KEY (specification) REFERENCES Specifications (repo_name)
2016-07-26 00:36:12 +02:00
);
CREATE TABLE Evaluations (
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
specification TEXT NOT NULL,
revision TEXT NOT NULL,
FOREIGN KEY (specification) REFERENCES Specifications (repo_name)
2016-07-16 18:16:39 +02:00
);
CREATE TABLE Derivations (
derivation TEXT NOT NULL,
evaluation INTEGER NOT NULL,
job_name TEXT NOT NULL,
system TEXT NOT NULL,
nix_name TEXT NOT NULL,
PRIMARY KEY (derivation, evaluation),
FOREIGN KEY (evaluation) REFERENCES Evaluations (id)
);
CREATE TABLE Outputs (
build INTEGER NOT NULL,
name TEXT NOT NULL,
path TEXT NOT NULL,
PRIMARY KEY (build, name),
FOREIGN KEY (build) REFERENCES Builds (id)
);
-- Builds are not in a one to one relationship with derivations in order to
-- keep track of non deterministic compilations.
CREATE TABLE Builds (
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
derivation TEXT NOT NULL,
evaluation INTEGER NOT NULL,
log TEXT NOT NULL,
status INTEGER NOT NULL,
timestamp INTEGER NOT NULL,
starttime INTEGER NOT NULL,
stoptime INTEGER NOT NULL,
FOREIGN KEY (derivation) REFERENCES Derivations (derivation),
FOREIGN KEY (evaluation) REFERENCES Evaluations (id)
2016-07-16 18:16:39 +02:00
);
COMMIT;