Added pipeline and result to runs table
This commit is contained in:
+6
-1
@@ -111,8 +111,13 @@ CREATE TABLE runners (
|
|||||||
);
|
);
|
||||||
|
|
||||||
CREATE TABLE runs (
|
CREATE TABLE runs (
|
||||||
id SERIAL PRIMARY KEY
|
id SERIAL PRIMARY KEY,
|
||||||
|
pipeline SERIAL,
|
||||||
|
result BOOLEAN NOT NULL,
|
||||||
|
|
||||||
|
CONSTRAINT fk_pipeline
|
||||||
|
FOREIGN KEY(pipeline)
|
||||||
|
REFERENCES pipelines(id)
|
||||||
);
|
);
|
||||||
|
|
||||||
CREATE TABLE command_executions (
|
CREATE TABLE command_executions (
|
||||||
|
|||||||
Reference in New Issue
Block a user