length = -1    << removed!@!!!!!!!!!!!!
This commit is contained in:
snoop 2017-06-23 11:59:32 +09:00
parent 432cd07c67
commit 0dfb06c2e6
4 changed files with 4 additions and 4 deletions

View File

@ -58,7 +58,7 @@ public class InfraOsPort {
}
@Basic
@Column(name = "PORT_TYPE", nullable = false, length = -1)
@Column(name = "PORT_TYPE", nullable = false)
public String getPortType() {
return portType;
}

View File

@ -38,7 +38,7 @@ public class InfraService {
}
@Basic
@Column(name = "PORT_TYPE", nullable = false, length = -1)
@Column(name = "PORT_TYPE", nullable = false)
public String getPortType() {
return portType;
}

View File

@ -68,7 +68,7 @@ public class NoAuthProbe {
}
@Basic
@Column(name = "STATUS", nullable = false, length = -1)
@Column(name = "STATUS", nullable = false)
@Enumerated(EnumType.STRING)
public AuthType getStatus() {
return status;

View File

@ -33,7 +33,7 @@ public class Probe {
}
@Column(name = "STATUS", nullable = true, length = -1)
@Column(name = "STATUS", nullable = true)
public String getStatus() {
return status;
}