Skip to content

Commit

Permalink
Add comment to sanitise script as it may contain ppi
Browse files Browse the repository at this point in the history
  • Loading branch information
elceebee committed Jan 3, 2025
1 parent df7117d commit b9992f6
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions db/scripts/sanitise.sql
Original file line number Diff line number Diff line change
Expand Up @@ -158,3 +158,11 @@ UPDATE "vendor_api_users"
SET
full_name = concat('Api User', id),
email_address = concat('application_reference_', id, '@example.com');

-- WithdrawalReason
UPDATE "withdrawal_reasons"
SET
comment = CASE
WHEN comment IS NULL THEN NULL
ELSE generate_lorem_ipsum('short')
END;

0 comments on commit b9992f6

Please sign in to comment.