mirror of https://github.com/apache/openjpa.git
Setting table name for Item to avoid collisions with o.a.o.p.simple.Item.
M Item.java git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@802207 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
38cd47a76d
commit
a54f47dfc8
|
@ -19,13 +19,16 @@
|
|||
package org.apache.openjpa.meta;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import javax.persistence.CascadeType;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.GeneratedValue;
|
||||
import javax.persistence.Id;
|
||||
import javax.persistence.ManyToOne;
|
||||
import javax.persistence.Table;
|
||||
|
||||
@Entity
|
||||
@Table(name="META_ITEM")
|
||||
public class Item implements Serializable {
|
||||
|
||||
@Id
|
||||
|
|
Loading…
Reference in New Issue