diff --git a/README.md b/README.md index 77decbf..add567f 100644 --- a/README.md +++ b/README.md @@ -3,19 +3,22 @@ Liquify is a command-line tool to convert [Liquibase](http://www.liquibase.org) changelog files between the supported file formats(xml,yaml,json,sql). The project comes with the liquify bash shell script as the default way to launch the tool. However, if you do not -have BASH on your machine, you can still launch the still using the java command as well (java -jar liquify.jar [-options] ). +have BASH on your machine, you can still launch the tool using the java command as well (java -jar liquify.jar [-options] ). ``` Usage: liquify [-options] Options: + Required: -t,--type Target changelog file type (xml,yaml,json,sql). + Conditional: -db,--database Database type to use when using the sql type (i.e oracle, h2, etc). + Example Usage: -liquify -t sql -db oracle db.changelog.xml (creates db.changelog.oracle.sql with the oracle dialect). +liquify -t sql -db oracle db.changelog.xml (db.changelog.xml => db.changelog.oracle.sql) ``` _Note: When using the sql change log file type, not all bundled change commands are supported the different database types (i.e. createSequence, addAutoIncrement, etc). If the tool fails to build when trying to,