Hello Community,
I'm trying to change the size of groupId column of the SecurityGroup entity.
I tried changing the size from 20 to 80 as mentioned below.
Method: 1
<field-type-def type="id" sql-type="VARCHAR(20)" java-type="String"/>
I replaced this line with the below line of code
<field-type-def type="id" sql-type="VARCHAR(80)" java-type="String"/>
Method: 2
and also tried changing the below-mentioned code, I changed the type to the
description for groupId.
<entity entity-name="SecurityGroup"
package-name="org.apache.ofbiz.security.securitygroup"
default-resource-name="SecurityEntityLabels"
title="Security Component - Security Group">
<field name="groupId" type="id"></field>
<field name="groupName" type="value"></field>
<field name="description" type="description"></field>
<prim-key field="groupId"/>
</entity>
both methods didn't work, please guide me If I'm going wrong anywhere.
I'm also attaching the screenshot for you to have a look at.
Regards,
Maheshwari.