Hello,
I want to query JIRA Software database with SQL query to have :
- workflow statuses and their translation,
- custom fields and their translation.
I found tables :
- issuestatus
- customfield
but, I don't find link to translation tables.
Could you please help me.
Thanks.
Best regards,
Sébastien Lucchini.
Hello Sébastien,
- For custom field translations, you can check the table entity_translation
- For Statuses translations, you can check the properties tables, as mentioned by @Nic Brough -Adaptavist- in this post:
Hello Petterson,
Thank you.
I don't find entity_translation table but I find query :
select CF.cfname, CF.description, PE.entity_name, PE.PROPERTY_KEY, PS.PROPERTYVALUE
from customfield CF, propertyentry PE, propertystring PS
where CF.id = PE.entity_id
and PE.id = PS.id
and PE.entity_name in ('CustomField')
order by 1, PE.PROPERTY_KEY
I'm looking for translation for statuses.
Best regards,
Sébastien Lucchini
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.