单列唯一约束的注释

时间:2013-03-14 13:11:37

标签: hibernate jpa hibernate-annotations

我想指示Hibernate在单个列上创建唯一约束。我在hibernate配置中设置了hibernate.hbm2ddl.auto=update,我的代码如下所示:

@Column(name = "program_id",unique=true)
@Length(min = 0, max = 10)
private String programID;

我没有在MySQL的表上​​看到任何唯一索引。为了让它发挥作用,我想做些什么?

0 个答案:

没有答案