Skip to content

Commit

Permalink
Merge pull request #596 from bcgov/feature/Grad2-2406AddMissingIndexT…
Browse files Browse the repository at this point in the history
…oProd

Feature/grad2 2406 add missing index to prod
  • Loading branch information
kamal-mohammed authored Dec 5, 2023
2 parents 1f6f3b7 + 7efb03b commit 07ea0e1
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
BEGIN
EXECUTE IMMEDIATE 'DROP INDEX X_OPTPROG_GRADSTUDID';
EXCEPTION
WHEN OTHERS THEN
IF SQLCODE != -1418 THEN
RAISE;
END IF;
END;
/

CREATE INDEX X_OPTPROG_GRADSTUDID
ON STUDENT_OPTIONAL_PROGRAM (GRADUATION_STUDENT_RECORD_ID)
TABLESPACE API_GRAD_IDX;

0 comments on commit 07ea0e1

Please sign in to comment.