Skip to content

Commit

Permalink
add comment column
Browse files Browse the repository at this point in the history
  • Loading branch information
Scarlett-Truong committed Sep 25, 2024
1 parent a0ad001 commit 4fca626
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion migrations/sql/V1.28.0__CE-1035.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,7 @@ RENAME COLUMN lead_agency TO lead_agency_code;

ALTER TABLE case_management.decision ADD CONSTRAINT FK_decision__lead_agency_code FOREIGN KEY (lead_agency_code) REFERENCES case_management.agency_code (agency_code);

ALTER TABLE case_management.agency_code ADD display_order int4;
ALTER TABLE case_management.agency_code ADD display_order int4;

--comment
COMMENT ON COLUMN case_management.agency_code.display_order is 'The order in which the values of the agency should be displayed when presented to a user in a list.';

0 comments on commit 4fca626

Please sign in to comment.