From bcf6dc67263fcab7058c171a54de4df2a9f9930f Mon Sep 17 00:00:00 2001 From: simonredfern Date: Wed, 26 Nov 2025 21:54:57 +0100 Subject: [PATCH] group table name --- obp-api/src/main/scala/code/group/MappedGroup.scala | 1 + 1 file changed, 1 insertion(+) diff --git a/obp-api/src/main/scala/code/group/MappedGroup.scala b/obp-api/src/main/scala/code/group/MappedGroup.scala index d7a8d1436..5579b9c34 100644 --- a/obp-api/src/main/scala/code/group/MappedGroup.scala +++ b/obp-api/src/main/scala/code/group/MappedGroup.scala @@ -107,5 +107,6 @@ class MappedGroup extends Group with LongKeyedMapper[MappedGroup] with IdPK with } object MappedGroup extends MappedGroup with LongKeyedMetaMapper[MappedGroup] { + override def dbTableName = "Group" // define the DB table name override def dbIndexes = Index(GroupId) :: Index(BankId) :: super.dbIndexes } \ No newline at end of file