Skip to content

Commit

Permalink
PO-641 add new column originator_id and remove column originator_refe…
Browse files Browse the repository at this point in the history
…rence
  • Loading branch information
abrahamdennis committed Aug 20, 2024
1 parent 6ff6849 commit 31128c8
Showing 1 changed file with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/**
*
* OPAL Program
*
* MODULE : modify_defendant_accounts.sql
*
* DESCRIPTION : Modified DEFENDANT_ACCOUNTS table to add originator_id column and drop originator_reference column.
*
* VERSION HISTORY:
*
* Date Author Version Nature of Change
* ---------- -------- -------- ----------------------------------------------------------------------------------------------------------
* 20/08/2024 A Dennis 1.0 PO-641 Modified DEFENDANT_ACCOUNTS table to add originator_id column and drop originator_reference column.
*
**/

ALTER TABLE defendant_accounts
DROP COLUMN IF EXISTS originator_reference;

ALTER TABLE defendant_accounts
ADD COLUMN originator_id varchar(40);

COMMENT ON COLUMN defendant_accounts.originator_id IS 'ID of the Originator';

0 comments on commit 31128c8

Please sign in to comment.