Skip to content
This repository has been archived by the owner on Feb 3, 2021. It is now read-only.

Commit

Permalink
fixes #1 - table schemas for DocFragment and demo entities
Browse files Browse the repository at this point in the history
  • Loading branch information
danhaywood committed Feb 3, 2017
1 parent ed3b83d commit d1e2260
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@

@javax.jdo.annotations.PersistenceCapable(
identityType=IdentityType.DATASTORE,
schema = "docfragmentdemo",
schema = "incodeDocFragmentDemo",
table = "DemoCustomer"
)
@javax.jdo.annotations.DatastoreIdentity(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@

@javax.jdo.annotations.PersistenceCapable(
identityType=IdentityType.DATASTORE,
schema = "docfragmentdemo",
schema = "incodeDocFragmentDemo",
table = "DemoInvoice"
)
@javax.jdo.annotations.DatastoreIdentity(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ public class DemoModuleTearDown extends FixtureScript {

@Override
protected void execute(ExecutionContext executionContext) {
isisJdoSupport.executeUpdate("delete from \"docfragmentdemo\".\"DemoCustomer\"");
isisJdoSupport.executeUpdate("delete from \"docfragmentdemo\".\"DemoInvoice\"");
isisJdoSupport.executeUpdate("delete from \"incodeDocFragmentDemo\".\"DemoCustomer\"");
isisJdoSupport.executeUpdate("delete from \"incodeDocFragmentDemo\".\"DemoInvoice\"");
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class DocFragmentModuleTearDown extends FixtureScript {

@Override
protected void execute(ExecutionContext executionContext) {
isisJdoSupport.executeUpdate("delete from \"docfragment\".\"DocFragment\"");
isisJdoSupport.executeUpdate("delete from \"incodeDocFragment\".\"DocFragment\"");
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@

@javax.jdo.annotations.PersistenceCapable(
identityType=IdentityType.DATASTORE,
schema = "docfragment",
schema = "incodeDocFragment",
table = "DocFragment"
)
@javax.jdo.annotations.DatastoreIdentity(
Expand Down

0 comments on commit d1e2260

Please sign in to comment.