7430_devToTest #2490

Merged
alexm merged 306 commits from 7430_devToTest into test 2024-05-21 09:15:04 +00:00
1 changed files with 7 additions and 6 deletions
Showing only changes of commit 3eba4a1f69 - Show all commits

View File

@ -1,9 +1,10 @@
-- Place your SQL code here
ALTER TABLE vn.absenceType ADD isFestive BOOL DEFAULT 1 NOT NULL COMMENT 'Para marcar un tipo de absence';
ALTER TABLE vn.absenceType ADD isFestiveEligible BOOL DEFAULT 1 NOT NULL COMMENT 'Para marcar un tipo de absence';
UPDATE absenceType
SET isFestiveEligible = 0
WHERE code = 'holiday';
UPDATE vn.absenceType
SET isFestive=0
WHERE id=1;
UPDATE vn.absenceType
SET isFestive=0
WHERE id=6;
SET isFestiveEligible=0
WHERE code = 'halfHoliday';