-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 
Author Message
 Post subject: Naming foreign key of a primary key association
PostPosted: Wed Feb 10, 2010 4:50 pm 
Newbie

Joined: Wed Feb 10, 2010 4:28 pm
Posts: 1
I would like to be able to assign the name of a foreign key for a primary key used as a reference to another primary key. For example,

Code:
class Bar
{
    @OneToOne(optional = false)
    @PrimaryKeyJoinColumn()
    private Foo foo;
...
}


Even when using @ForeignKey, the following DDL is generated

Code:
alter table bar
    add index FK4219F470CA9026D (bar_id),
    add constraint FK4219F470CA9026D
    foreign key (bar_id)
    references bar (foo_id);


Is there a way to change the name of the foreign key from FK4219F470CA9026D to Fk_Bar_Foo, for example?


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.