hydra.sql: Make isChannel a not null column.
We have this set in upgrade-42.sql, so it's better to stay consistent with the basic SQL file to avoid problems with new Hydra installations. Signed-off-by: aszlig <aszlig@redmoonstudios.org> Reported-by: Eelco Dolstra <eelco.dolstra@logicblox.com>
This commit is contained in:
parent
99cbe06b0d
commit
92e85f05e2
|
@ -157,7 +157,7 @@ create table Builds (
|
||||||
maxsilent integer default 3600, -- meta.maxsilent
|
maxsilent integer default 3600, -- meta.maxsilent
|
||||||
timeout integer default 36000, -- meta.timeout
|
timeout integer default 36000, -- meta.timeout
|
||||||
|
|
||||||
isChannel integer default 0, -- meta.isHydraChannel
|
isChannel integer not null default 0, -- meta.isHydraChannel
|
||||||
isCurrent integer default 0,
|
isCurrent integer default 0,
|
||||||
|
|
||||||
-- Copy of the nixExprInput/nixExprPath fields of the jobset that
|
-- Copy of the nixExprInput/nixExprPath fields of the jobset that
|
||||||
|
|
Loading…
Reference in a new issue