Skip to content

Commit

Permalink
Merge pull request #14121 from transcom/b-21374-ub-fields-main
Browse files Browse the repository at this point in the history
MAIN B-21374 ub fields main
  • Loading branch information
cameroncaci authored Dec 10, 2024
2 parents 2696628 + edad845 commit 7ef40cf
Show file tree
Hide file tree
Showing 52 changed files with 3,030 additions and 367 deletions.
1 change: 1 addition & 0 deletions migrations/app/migrations_manifest.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1024,6 +1024,7 @@
20241009210749_create_view_v_locations.up.sql
20241011201326_changes_for_actual_expense_reimbursement_field.up.sql
20241017183144_add_AK_HI_duty_locations.up.sql
20241018091722_oconus-entitlements-enhancement.up.sql
20241023130404_create_re_service_items.up.sql
20241024114748_create_gbloc_aors.up.sql
20241029125015_add_orders_type_enum.up.sql
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@

ALTER TABLE entitlements
ADD COLUMN IF NOT EXISTS accompanied_tour BOOLEAN NULL,
ADD COLUMN IF NOT EXISTS dependents_under_twelve INTEGER NULL,
ADD COLUMN IF NOT EXISTS dependents_twelve_and_over INTEGER NULL,
ADD COLUMN IF NOT EXISTS ub_allowance INTEGER NULL;

COMMENT ON COLUMN entitlements.accompanied_tour IS 'Indicates if the move entitlement allows dependents to travel to the new Permanent Duty Station (PDS). This is only present on OCONUS moves.';
COMMENT ON COLUMN entitlements.dependents_under_twelve IS 'Indicates the number of dependents under the age of twelve for a move. This is only present on OCONUS moves.';
COMMENT ON COLUMN entitlements.dependents_twelve_and_over IS 'Indicates the number of dependents of the age twelve or older for a move. This is only present on OCONUS moves.';
COMMENT ON COLUMN entitlements.ub_allowance IS 'The amount of weight in pounds that the move is entitled for shipment types of Unaccompanied Baggage.';
144 changes: 144 additions & 0 deletions pkg/gen/ghcapi/embedded_spec.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions pkg/gen/ghcmessages/counseling_update_allowance_payload.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions pkg/gen/ghcmessages/create_orders.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions pkg/gen/ghcmessages/entitlements.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions pkg/gen/ghcmessages/update_allowance_payload.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 7ef40cf

Please sign in to comment.