Merge pull request #69 from maxailloud/table-drop-doc

Update of the README to explain the use of the table:drop command
This commit is contained in:
William DURAND 2011-11-04 09:42:29 -07:00
commit fe4f2059c6

View file

@ -305,6 +305,18 @@ As usual, `--connection` allows to specify a connection.
Note that the `--force` option is needed to actually execute the SQL statements.
### Table ###
You can drop one or several **table**:
> php app/console propel:table:drop [--force] [--connection[="..."]] [table1] ... [tableN]
As usual, `--connection` allows to specify a connection.
The table arguments define which table will be delete, by default all table.
Note that the `--force` option is needed to actually execute the deletion.
## PropelParamConverter ##