forked from lix-project/hydra
sql: add enable_dynamic_run_command to the Project as well
This commit is contained in:
parent
a9bfabd672
commit
85a53694c8
2 changed files with 3 additions and 0 deletions
|
@ -49,6 +49,7 @@ create table Projects (
|
||||||
declfile text, -- File containing declarative jobset specification
|
declfile text, -- File containing declarative jobset specification
|
||||||
decltype text, -- Type of the input containing declarative jobset specification
|
decltype text, -- Type of the input containing declarative jobset specification
|
||||||
declvalue text, -- Value of the input containing declarative jobset specification
|
declvalue text, -- Value of the input containing declarative jobset specification
|
||||||
|
enable_dynamic_run_command boolean not null default false,
|
||||||
foreign key (owner) references Users(userName) on update cascade
|
foreign key (owner) references Users(userName) on update cascade
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1,4 @@
|
||||||
ALTER TABLE Jobsets
|
ALTER TABLE Jobsets
|
||||||
ADD COLUMN enable_dynamic_run_command boolean not null default false;
|
ADD COLUMN enable_dynamic_run_command boolean not null default false;
|
||||||
|
ALTER TABLE Projects
|
||||||
|
ADD COLUMN enable_dynamic_run_command boolean not null default false;
|
||||||
|
|
Loading…
Reference in a new issue