Where is a process bmpn model stored after deploy

Hello,
I’m trying to understad Camunda database structure and can’t understand, where is a process bmpn model stored after deploy?

regards,
Elena.

@Elena welcome to the forum :partying_face:

Post deployment bpmn file will be persisted in below tables.

select * from ACT_RE_DEPLOYMENT;
select * from ACT_GE_BYTEARRAY where DEPLOYMENT_ID_ in (select ID_ from ACT_RE_DEPLOYMENT); 
  • ACT_RE_DEPLOYMENT will hold reference of the deployment.
  • ACT_GE_BYTEARRAY will store the bpmn file as type of BLOB.

Thank you!!! Now it’s clear