Dobrica Pavlinušić's random unstructured stuff
Request Tracker: Revision 1
^ Urgh! I mailed wrong queue

^^ find transaction number of comment you want to change

eg: /rt/Ticket/Display.html?id=1334#txn-15624

^^ check if ticket number matches and update it

.pre
rt4=# select * from transactions where id = 15624 ;
-[ RECORD 1 ]-+---------------------------------------------------------------
id | 15624
objectid | 1334
.pre

^^ update objectid

(which is really ticket number)

.pre
rt4=# begin ;
BEGIN
rt4=# update transactions set objectid= 1290 where id = 15624 ;
UPDATE 1
rt4=# commit ;
COMMIT
.pre