DRAG DROP You need to handle the removal of the Description field and the Clone procedure without breaking other extensions. Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order. NOTE: More than one order of answer choices is correct. You will receive credit for any of the correct orders you select. 
Seen similar on practice exams. The correct order is: set Description as ObsoleteState = Pending, then set Clone procedure as Pending too, finally remove the Description field from the Issue table. Official docs and hands-on labs explain this phased removal approach well.
Pretty sure the right flow is: set Description field as ObsoleteState = Pending first, then do the same for the Clone procedure, and only then actually remove Description from the Issue table. That's how you avoid breaking other extensions since consumers get a warning before things disappear. If I'm missing a reason to remove Clone before Description, let me know.
- Set Description field as ObsoleteState = Pending and ObsoleteReason = "Not in use in version 2.0.0.0."
- Set Clone procedure as ObsoleteState Pending and ObsoleteReason = 'Not in use in version 2.0.0.0.
- Remove Description field from the Issue table in version 2.0.0.1.