guix-cuirass/src/schema.sql

33 lines
887 B
MySQL
Raw Normal View History

BEGIN TRANSACTION;
CREATE TABLE Specifications (
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
repo_name TEXT NOT NULL,
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
);
CREATE TABLE Evaluations (
derivation TEXT NOT NULL PRIMARY KEY,
job_name TEXT NOT NULL,
specification INTEGER NOT NULL,
FOREIGN KEY (specification) REFERENCES Specifications (id)
2016-07-16 18:16:39 +02:00
);
CREATE TABLE Builds (
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
derivation TEXT NOT NULL,
log TEXT NOT NULL,
output TEXT, -- NULL if build failed
FOREIGN KEY (derivation) REFERENCES Evaluations (derivation)
2016-07-16 18:16:39 +02:00
);
COMMIT;