`type` column in `Jobsets` is defined as NOT NULL. However, the original upgrade script adding this column ommited the constraint.
3 lines
100 B
SQL
3 lines
100 B
SQL
update Jobsets set type = 0 where type is null;
|
|
alter table Jobsets alter column type set not null;
|