Is liquibase renewal or lipibase migrating?

What is the difference between b / t liquibase ... migrate and liquibase ... update ?

I can not find the documentation for the migrate command at http://www.liquibase.org/documentation/command_line.html

+5
source share
1 answer

migrate is just an (undocumented) alias for update :

 687 if (this.command.equalsIgnoreCase("migrate")) { 688 this.command = "update"; 689 } 

liquidibase.integration.commandline.Main

+8
source

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


All Articles