[hibernate-issues] [Hibernate-JIRA] Created: (ANN-575) Mistakes in "2.2.5.1. One-to-one"

Diego Pires Plentz (JIRA) noreply at atlassian.com
Mon Mar 12 23:17:09 EDT 2007


Mistakes in "2.2.5.1. One-to-one"
---------------------------------

         Key: ANN-575
         URL: http://opensource.atlassian.com/projects/hibernate/browse/ANN-575
     Project: Hibernate Annotations
        Type: Improvement

  Components: documentation  
    Reporter: Diego Pires Plentz


    @JoinTable(name = "CustomerPassports" *** ***
        joinColumns = @JoinColumn(name="customer_fk"),
        inverseJoinColumns = @JoinColumn***s***(name="passport_fk")
    )

Should be

    @JoinTable(name = "CustomerPassports" ***,***
        joinColumns = @JoinColumn(name="customer_fk"),
        inverseJoinColumns = @JoinColumn*** ***(name="passport_fk")
    )


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://opensource.atlassian.com/projects/hibernate/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira




More information about the hibernate-issues mailing list