标签: hibernate jpa hibernate-annotations
我想指示Hibernate在单个列上创建唯一约束。我在hibernate配置中设置了hibernate.hbm2ddl.auto=update,我的代码如下所示:
hibernate.hbm2ddl.auto=update
@Column(name = "program_id",unique=true) @Length(min = 0, max = 10) private String programID;
我没有在MySQL的表上看到任何唯一索引。为了让它发挥作用,我想做些什么?