OPENJPA-687: Change table names to avoid conflict

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@684806 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Pinaki Poddar 2008-08-11 16:44:01 +00:00
parent 5396a66b2b
commit c8895c6978
2 changed files with 3 additions and 1 deletions

View File

@ -25,8 +25,10 @@ import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.OneToMany;
import javax.persistence.Table;
@Entity
@Table(name="P_CUSTOMER")
public class Customer {
@Id
@GeneratedValue

View File

@ -25,7 +25,7 @@ import javax.persistence.ManyToOne;
import javax.persistence.Table;
@Entity
@Table(name="ORDERS")
@Table(name="P_ORDER")
public class Order {
@Id
@GeneratedValue