hydra/src/sql/upgrade-66.sql
Nikola Knezevic e9922c460e Add missing SQL upgrade script for NOT NULL on type
`type` column in `Jobsets` is defined as NOT NULL. However, the original upgrade
script adding this column ommited the constraint.
2020-05-18 10:59:55 +02:00

3 lines
100 B
SQL

update Jobsets set type = 0 where type is null;
alter table Jobsets alter column type set not null;