I used these commands for change priority desc:
To check
SELECT
priority_id,
priority,
priority_desc
FROM
ost_ticket_priority;
to modify
UPDATE
ost_ticket_priority
SET
priority_desc = 'Urgente'
WHERE
priority_id = 3;
Thanks for the input.
But if I delete 2 items (Emergency and low) what problems are there?