This commit is contained in:
crusader 2018-06-14 20:28:47 +09:00
parent 6621ff79e1
commit b08d513524
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@
<groupId>com.loafle.overflow</groupId>
<artifactId>commons-java</artifactId>
<packaging>jar</packaging>
<version>1.0.70-SNAPSHOT</version>
<version>1.0.71-SNAPSHOT</version>
<name>com.loafle.overflow.commons-java</name>
<properties>

View File

@ -85,7 +85,7 @@ public class InfraHost extends Infra {
* @return the infraHostIPs
*/
@OneToMany(fetch = FetchType.EAGER, cascade = CascadeType.ALL, orphanRemoval = true, mappedBy = "infraHost")
@OrderColumn(name = "ADDRESS")
@OrderColumn(name = "ID")
public List<InfraHostIP> getInfraHostIPs() {
return infraHostIPs;
}