This is an automated email from the ASF dual-hosted git repository. danhaywood pushed a commit to branch v2 in repository https://gitbox.apache.org/repos/asf/causeway-app-petclinic.git
commit 105e8c949828748c2bffe5b0c1a5675aec9dd9c9 Author: Dan Haywood <[email protected]> AuthorDate: Tue May 21 08:39:24 2024 +0100 updates the namespace of PetOwner module --- .../src/main/java/domainapp/modules/petowner/PetOwnerModule.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module-petowner/src/main/java/domainapp/modules/petowner/PetOwnerModule.java b/module-petowner/src/main/java/domainapp/modules/petowner/PetOwnerModule.java index 7013f76..e6166bb 100644 --- a/module-petowner/src/main/java/domainapp/modules/petowner/PetOwnerModule.java +++ b/module-petowner/src/main/java/domainapp/modules/petowner/PetOwnerModule.java @@ -28,8 +28,8 @@ import domainapp.modules.petowner.dom.petowner.PetOwner; @EntityScan(basePackageClasses = {PetOwnerModule.class}) public class PetOwnerModule implements ModuleWithFixtures { - public static final String NAMESPACE = "simple"; - public static final String SCHEMA = "simple"; + public static final String NAMESPACE = "petowner"; + public static final String SCHEMA = "petowner"; @Override public FixtureScript getTeardownFixture() {
