rez_core 4.0.26 → 4.0.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rez_core",
3
- "version": "4.0.26",
3
+ "version": "4.0.27",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -186,12 +186,10 @@ export class StageMovementRepository {
186
186
  SELECT
187
187
  a.*,
188
188
  m.stage_id,
189
- ac.code AS action_category_code,
190
- arm.form_id
189
+ ac.code AS action_category_code
191
190
  FROM frm_wf_action a
192
191
  LEFT JOIN frm_wf_stage_action_mapping m ON a.id = m.action_id
193
192
  LEFT JOIN frm_wf_action_category ac ON a.action_category = ac.id
194
- LEFT JOIN frm_wf_action_resources_mapping arm ON m.id = arm.stg_act_mapping_id
195
193
  WHERE m.stage_id = ?
196
194
  `,
197
195
  [stageId],