diff --git a/migrations/app/migrations_manifest.txt b/migrations/app/migrations_manifest.txt index 4381940557c..25f3308e52e 100644 --- a/migrations/app/migrations_manifest.txt +++ b/migrations/app/migrations_manifest.txt @@ -899,4 +899,5 @@ 20240207173709_updateTransportationOffices.up.sql 20240212150834_20240212_disable_homesafe_stg_cert.up.sql 20240214213247_updateTransportationOfficesGbloc.up.sql +20240223144515_add_pro_gear_weights_to_mto_shipments.up.sql 20240223200739_updateDutyLocationsZip.up.sql diff --git a/migrations/app/schema/20240223144515_add_pro_gear_weights_to_mto_shipments.up.sql b/migrations/app/schema/20240223144515_add_pro_gear_weights_to_mto_shipments.up.sql new file mode 100644 index 00000000000..5a13b62b29b --- /dev/null +++ b/migrations/app/schema/20240223144515_add_pro_gear_weights_to_mto_shipments.up.sql @@ -0,0 +1,8 @@ +-- Adds new columns to mto shipments table +ALTER TABLE mto_shipments +ADD COLUMN actual_pro_gear_weight INTEGER NULL, +ADD COLUMN actual_spouse_pro_gear_weight INTEGER NULL; + +-- Comments on new columns +COMMENT ON COLUMN mto_shipments.actual_pro_gear_weight IS 'Indicates weight of MTO shipment pro gear.'; +COMMENT ON COLUMN mto_shipments.actual_spouse_pro_gear_weight IS 'Indicates weight of MTO shipment spouse pro gear.'; \ No newline at end of file