...
Component | Server |
---|---|
Application | Power Admin |
Database Type | N/A |
Cause
The KB article https://confluence.atlassian.com/jirakb/unlock-a-locked-jira-software-custom-field-779158866.html used to ‘unlock’ the fields suggests changing the managed
field in the managedconfigurationitem
table from ‘true’ to ‘false’ for the field that you want to unlock. However, some applications (including Power Admin) still treat the field as locked since they use the actual access_level
specified in another field in the same table.
...
Example:UPDATE managedconfigurationitem set ACCESS_LEVEL='ADMIN' where item_id in ('customfieldID');
\uD83D\uDCCB Related articles
...