Execute liquibase update in production environment

You can use the command line liquibase mode (http://www.liquibase.org/documentation/command_line.html)


Alternately, some people will use mvn liquibase:updateSql during testing to create the SQL to execute against QA and then production. When they deploy to production they are then running the generated SQL like they would any other SQL.


Nathan

Any ideas?