From e5ac860d2c75ff3825cdb2d6f9ccbd621fefaa3a Mon Sep 17 00:00:00 2001 From: William DURAND Date: Sat, 26 Mar 2011 18:30:53 +0100 Subject: [PATCH] Updated README --- README | 17 ++++++++++++++++- README.markdown | 17 ++++++++++++++++- 2 files changed, 32 insertions(+), 2 deletions(-) diff --git a/README b/README index 1663fb7..08eab8b 100644 --- a/README +++ b/README @@ -119,7 +119,7 @@ Commands Call the application console with the `propel:build` command: - > php app/console propel:build [--classes] [--sql] + > php app/console propel:build [--classes] [--sql] [--insert-sql] ### Insert SQL @@ -185,6 +185,21 @@ You can dump data from your database in XML to `app/propel/dump/xml/`: > php app/console propel:data-dump [--connection[="..."]] +Once you ran `propel:data-dump` you can generate SQL statements from dumped data: + + > php app/console propel:data-sql [--connection[="..."]] + +SQL will be write in `app/propel/sql/`. + + +### Graphviz + +You can generate **Graphviz** file for your project by using the following command line: + + > php app/console propel:graphviz + +It will write files in `app/propel/graph/`. + Known Problems -------------- diff --git a/README.markdown b/README.markdown index 1663fb7..08eab8b 100644 --- a/README.markdown +++ b/README.markdown @@ -119,7 +119,7 @@ Commands Call the application console with the `propel:build` command: - > php app/console propel:build [--classes] [--sql] + > php app/console propel:build [--classes] [--sql] [--insert-sql] ### Insert SQL @@ -185,6 +185,21 @@ You can dump data from your database in XML to `app/propel/dump/xml/`: > php app/console propel:data-dump [--connection[="..."]] +Once you ran `propel:data-dump` you can generate SQL statements from dumped data: + + > php app/console propel:data-sql [--connection[="..."]] + +SQL will be write in `app/propel/sql/`. + + +### Graphviz + +You can generate **Graphviz** file for your project by using the following command line: + + > php app/console propel:graphviz + +It will write files in `app/propel/graph/`. + Known Problems --------------