Skip to content

Commit

Permalink
Enabled genders x & u
Browse files Browse the repository at this point in the history
  • Loading branch information
arcshiftsolutions committed Aug 20, 2024
1 parent 4000c9c commit fc42869
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions api/src/main/resources/db/migration/V1.0.36__STUDENT_API.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
UPDATE STUDENT_GENDER_CODE
SET EXPIRY_DATE = to_date('2299-12-31 00:00:00', 'YYYY-MM-DD HH24:MI:SS')
WHERE GENDER_CODE in ('X','U');

UPDATE STUDENT_SEX_CODE
SET EXPIRY_DATE = to_date('2299-12-31 00:00:00', 'YYYY-MM-DD HH24:MI:SS')
WHERE SEX_CODE in ('I','U');

0 comments on commit fc42869

Please sign in to comment.