There's no "ALTER CONSTRAINT" command, so you just have to do:
Code:
ALTER TABLE DROP FOREIGN KEY nameyougaveit;
ALTER TABLE ADD CONSTRAINT FOREIGN KEY name ...same as in create...
Simple, really.
This, too, is documented:
http://dev.mysql.com/doc/refman/5.5/en/alter-table.html