Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
daquino committed Jun 26, 2015
1 parent bc038d9 commit 6257555
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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] <source>).
have BASH on your machine, you can still launch the tool using the java command as well (java -jar liquify.jar [-options] <source>).

```
Usage:
liquify [-options] <source>
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,
Expand Down

0 comments on commit 6257555

Please sign in to comment.