Skip to content

Commit

Permalink
fixes for trailing whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
traskowskycaci committed Mar 6, 2025
1 parent 050072d commit bf9164a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ BEGIN
RAISE WARNING ''%'', v_log_message;
ELSE
v_log_message := format(''Successfully updated moves.prime_acknowledged_at value to %s for id %s'', v_move_prime_acknowledged_at, v_move_id);
RAISE NOTICE ''%'', v_log_message;
RAISE NOTICE ''%'', v_log_message;
END IF;
END IF;
END IF;
-- Check if mtoShipments exists and is an array
IF jsonb_typeof(v_move_record->''mtoShipments'') = ''array'' THEN
Expand Down Expand Up @@ -78,7 +78,7 @@ BEGIN
RAISE WARNING ''%'', v_log_message;
ELSE
v_log_message := format(''Successfully updated mto_shipments.prime_acknowledged_at value to %s for id %s'', v_shipment_prime_acknowledged_at, v_shipment_id);
RAISE NOTICE ''%'', v_log_message;
RAISE NOTICE ''%'', v_log_message;
END IF;
END IF;
END LOOP;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-- Adds rejectedOn date to pre-existing rejected office users.
UPDATE office_users
SET rejected_on = updated_at
WHERE
UPDATE office_users
SET rejected_on = updated_at
WHERE
status ='REJECTED'::public."office_user_status" AND rejected_on is null;

0 comments on commit bf9164a

Please sign in to comment.