sys_hub_flow_version record of the flow is not getting captured in Update set when updating the flowDescriptionsys_hub_flow_version record of the flow is not getting captured in Update set when updating the flow, causing import preview errors due to missing version record referenceSteps to Reproduce Steps: 1. Create an Update set and make it current 2. Create/Update a Flow3. Verify that sys_hub_flow was captured in update set but not the sys_hub_flow_version. 4. Mark the update set complete. 5. Export it and try to import it in another instance. 6. Verify that while previewing you got the error that sys_hub_flow_version is missing.WorkaroundChange the version_record field type from reference to string on the sys_hub_flow table or Run this script: var gr = new GlideRecord("sys_dictionary"); gr.addQuery("name", "sys_hub_flow"); gr.addQuery("element", "version_record"); gr.query(); if (gr.next()) { if (gr.internal_type == "reference") { gr.internal_type = "string"; gr.update(); } }Related Problem: PRB1921408