You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2021/09/29 06:25:46 UTC

[isis-app-demo] 06/23: changes PetOwner schema to 'pets'

This is an automated email from the ASF dual-hosted git repository.

danhaywood pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/isis-app-demo.git

commit 0a0f465de8e337554f950d9c723344e0f66902b1
Author: Dan Haywood <da...@haywood-associates.co.uk>
AuthorDate: Wed Sep 29 06:50:30 2021 +0100

    changes PetOwner schema to 'pets'
---
 module-pets/src/main/java/domainapp/modules/simple/dom/so/PetOwner.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/module-pets/src/main/java/domainapp/modules/simple/dom/so/PetOwner.java b/module-pets/src/main/java/domainapp/modules/simple/dom/so/PetOwner.java
index fb2d8c3..2b553a6 100644
--- a/module-pets/src/main/java/domainapp/modules/simple/dom/so/PetOwner.java
+++ b/module-pets/src/main/java/domainapp/modules/simple/dom/so/PetOwner.java
@@ -36,7 +36,7 @@ import domainapp.modules.simple.types.Notes;
 
 @javax.persistence.Entity
 @javax.persistence.Table(
-    schema="simple",
+    schema="pets",
     uniqueConstraints = {
         @javax.persistence.UniqueConstraint(name = "SimpleObject__name__UNQ", columnNames = {"NAME"})
     }