liquibase Package Installation on Mac
About liquibase: Liquibase is a library for database change tracking. So it acts as a source control for you database. It has the following benefits.
- Supports code branching and merging
- Supports multiple developers
- Supports multiple database types
- Supports XML, YAML, JSON and SQL formats
- Supports context-dependent logic
- Cluster-safe database upgrades
- Generate Database change documentation
- Generate Database “diffs“
- Run through your build process, embedded in your application or on demand
- Automatically generate SQL scripts for DBA code review
- Does not require a live database connection
More Information: http://liquibase.org
Steps:
- Launch Terminal by pressing
command+space
, typeterminal
and hitEnter
key. - Run
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" < /dev/null 2> /dev/null
- Install
brew install liquibase
Done!