Skip to content

Commit

Permalink
Merge pull request #250 from jrfinc/master
Browse files Browse the repository at this point in the history
Removes insert=false and update=false from Role.hbm
  • Loading branch information
ar authored Jun 29, 2022
2 parents d9f8e4f + f6d6ea3 commit 1f857ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/eeuser/src/main/resources/org/jpos/ee/Role.hbm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<column name="name" sql-type="varchar(64)" not-null="true" unique-key="UK_RoleRealmName" />
</property>
<many-to-one name="realm" not-null="false" foreign-key="FK_RoleRealm" unique-key="UK_RoleRealmName" lazy="false"/>
<many-to-one name="parent" not-null="false" insert="false" update="false" foreign-key="FK_RoleParent" />
<many-to-one name="parent" not-null="false" foreign-key="FK_RoleParent" />

<set name="permissions" lazy="false" table="role_perms" order-by="name">
<key column="role" foreign-key="FK_RolePermissions"/>
Expand Down

0 comments on commit 1f857ed

Please sign in to comment.