Jobs.jobset_id: make not-null

This commit is contained in:
Graham Christensen
2020-02-05 19:42:07 -05:00
parent add4f610ce
commit 2cdcc7f188
3 changed files with 13 additions and 11 deletions

View File

@ -146,7 +146,7 @@ create table JobsetInputAlts (
create table Jobs (
project text not null,
jobset text not null,
jobset_id integer null,
jobset_id integer not null,
name text not null,
primary key (project, jobset, name),