sql: add enable_dynamic_run_command to the Project as well

This commit is contained in:
Graham Christensen 2021-12-15 12:32:10 -05:00
parent a9bfabd672
commit 85a53694c8
2 changed files with 3 additions and 0 deletions

View file

@ -49,6 +49,7 @@ create table Projects (
declfile text, -- File containing declarative jobset specification
decltype text, -- Type 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
);

View file

@ -1,2 +1,4 @@
ALTER TABLE Jobsets
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;