JBPAPP-1075 Removed @Column( unique = true ) - it is not needed for this test and causes problems with Oracle

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@16533 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Hardy Ferentschik 2009-05-11 14:10:17 +00:00
parent e7a7d3d0d8
commit 4a7e87b673
1 changed files with 0 additions and 1 deletions

View File

@ -21,7 +21,6 @@ public class Frame implements Serializable {
private Long id;
@OneToMany( mappedBy = "frame" )
private Set<Lens> lenses;
@Column( unique = true )
private String name;
@Formula("lower(name)")
private String lowerName;