Skip to content

Commit

Permalink
update additional references
Browse files Browse the repository at this point in the history
  • Loading branch information
farrell-m committed Jan 21, 2025
1 parent c621d0e commit 6366cc4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
@NoArgsConstructor
@JsonNaming(PropertyNamingStrategies.SnakeCaseStrategy.class)
@Table(name = "XXCCMS_FEE_EARNER_OFFICES_V", schema = "XXCCMS")
@SecondaryTable(name = "XXCCMS_FEE_EARNERS_V")
@SecondaryTable(name = "XXCCMS_FEE_EARNERS_V", schema = "XXCMS")
@Immutable
public class FeeEarner implements Serializable {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public class User {
* The functions assigned to the user.
*/
@ElementCollection(fetch = FetchType.LAZY)
@CollectionTable(name = "XXCCMS_USER_ROLES_V", joinColumns = @JoinColumn(name = "USER_LOGIN_ID"))
@CollectionTable(name = "XXCCMS_USER_ROLES_V", schema="XXCCMS", joinColumns = @JoinColumn(name = "USER_LOGIN_ID"))
@Column(name = "FUNCTION")
private List<String> functions;

Expand Down

0 comments on commit 6366cc4

Please sign in to comment.