|
@org.hibernate.annotations.ForeignKey allowed to change the generated foreign key name from the providers default implementation to a manually set name, like so: @org.hibernate.annotations.ForeignKey(name = "fk_foo_bar")
What is the suggested equivalent when using @javax.persistence.ForeignKey?
|