sql: add enable_dynamic_run_command to the Project as well

This commit is contained in:
Graham Christensen
2022-02-01 10:58:54 -05:00
parent a9bfabd672
commit 85a53694c8
2 changed files with 3 additions and 0 deletions
+1
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
);
+2
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;