Commit 87a6649c authored by Project Open's avatar Project Open

- Fixed absence_status_id values and added not null constraint

parent d031620c
......@@ -3,6 +3,12 @@
SELECT acs_log__debug('/packages/intranet-timesheet2/sql/postgresql/upgrade/upgrade-5.0.4.0.0-5.0.4.0.1.sql','');
-- Fix missing status
update im_user_absences
set absence_status_id = 16000
where absence_status_id is null;
alter table im_user_absences alter column absence_status_id set not null;
-- Add missing columns to acs_datatype
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment