How to delete assignments

I have a few corrupted assignments on my dev-server. I would like to delete all of them across all users on the server. Would you help with a query or other way of doing so?

Comments

  • You would want to delete the assignments from the entity_assignment table. It's best practice to take a Database backup before running any update, delete, or truncate queries.  You'll want to run a truncate on that table to remove all assignments and restart the Decisions service. The query will be: truncate table entity_assignment

Sign In or Register to comment.