is it possble update the customer of ticket directely from the database?
I tried:
Code: Select all
UPDATE ticket
SET customer_id='name@email.com', customer_user_id='name@email.com'
WHERE id = 324;
Thanks for your help
Moderator: crythias
Code: Select all
UPDATE ticket
SET customer_id='name@email.com', customer_user_id='name@email.com'
WHERE id = 324;