Skip to content

Commit

Permalink
PO-972 Create unique index on CONFIGURATIONS_ITEMS table for item_nam…
Browse files Browse the repository at this point in the history
…e, business_unit_id (#689)

Co-authored-by: Cade Faulkner <[email protected]>
  • Loading branch information
abrahamdennis and CadeFaulkner authored Jan 7, 2025
1 parent 2008328 commit 88abc71
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/**
* CGI OPAL Program
*
* MODULE : configuration_items_index.sql
*
* DESCRIPTION : Creates an index on CONFIGURATION_ITEMS table for (item_name,business_unit_id)
*
* VERSION HISTORY:
*
* Date Author Version Nature of Change
* ---------- ------- -------- -------------------------------------------------------------------------------------
* 06/01/2025 A Dennis 1.0 PO-972 Creates an index on CONFIGURATION_ITEMS table for (item_name,business_unit_id)
*
**/

DROP INDEX IF EXISTS ci_item_name_idx;
CREATE INDEX IF NOT EXISTS ci_item_name_bu_idx
ON configuration_items(item_name,business_unit_id);

0 comments on commit 88abc71

Please sign in to comment.