ing
This commit is contained in:
@@ -10,7 +10,7 @@ import java.util.Date;
|
||||
@Entity
|
||||
@Table(name = "META_TARGET_TYPE", schema = "public")
|
||||
@Inheritance(strategy = InheritanceType.SINGLE_TABLE)
|
||||
@DiscriminatorColumn(name = "TARGET_TYPE", discriminatorType = DiscriminatorType.INTEGER)
|
||||
@DiscriminatorColumn(name = "META_INFRA_TYPE_ID", discriminatorType = DiscriminatorType.INTEGER)
|
||||
public abstract class MetaTargetType {
|
||||
private Integer id;
|
||||
private MetaInfraType metaInfraType;
|
||||
@@ -29,7 +29,7 @@ public abstract class MetaTargetType {
|
||||
}
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "META_INFRA_TYPE_ID")
|
||||
@JoinColumn(name = "META_INFRA_TYPE_ID", insertable = true, updatable = false)
|
||||
public MetaInfraType getMetaInfraType() {
|
||||
return metaInfraType;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user