Remove unneccesary column

This commit is contained in:
James Agnew 2017-12-07 18:03:17 -06:00
parent eb80d3b3e1
commit e838b0e32d
2 changed files with 7 additions and 13 deletions

View File

@ -23,18 +23,7 @@ package ca.uhn.fhir.jpa.entity;
import java.io.Serializable;
import java.util.Collection;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.EnumType;
import javax.persistence.Enumerated;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.OneToMany;
import javax.persistence.SequenceGenerator;
import javax.persistence.Table;
import javax.persistence.UniqueConstraint;
import javax.persistence.*;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
@ -78,7 +67,8 @@ public class TagDefinition implements Serializable {
@Enumerated(EnumType.ORDINAL)
private TagTypeEnum myTagType;
private Integer myHashCode;
@Transient
private transient Integer myHashCode;
public TagDefinition() {
}

View File

@ -25,6 +25,10 @@
A new configuration option has been added to DaoConfig which allows newly created
resources to be assigned a UUID by the server instead of a sequential ID
</action>
<action type="fix">
An unneccesary column called "MYHASHCODE" was added to the
HFJ_TAG_DEF table in the JPA server schema
</action>
</release>
<release version="3.1.0" date="2017-11-23">
<action type="add">