If you edit a table, switch to the Keys tab, and change the name of a key, the ddl produced is:
-- Drop primary, unique and foreign key constraints
alter table CODES
drop constraint SYS_C002429 cascade;
-- Create/Recreate primary, unique and foreign key constraints
alter table CODES
add...