Jhipster: how to avoid updating the database when working in PROD mode?

When I run my jhipster application in run mode (spring.profiles.active = prod), the database update is always performed. I need to avoid this behavior because organizational policies require that database updates be performed manually by the database administrator.

Is it possible?

UPDATE with the answer: Yes, it is possible. The way to do this is exactly what @ julien-dubois said: in the application-prod.yml file, add the following line:

liquibase.enabled: false

Warning: application-prod.yml generated by jhipster already contains Liquibase configuration

liquibase:
    context: prod

But do not add the "included" entry to this "Liquibase" entry because it is ignored. You must add a new entry at the root level:

liquibase.enabled: false
liquibase:
    context: prod
+4
1

Spring

application-prod.yml liquibase.enabled=false

+2

Source: https://habr.com/ru/post/1614482/