Here is a list of my most used Symfony command line rool commands
Generate a new module
php symfony generate:module application modelname
Generate Schema from database
php5 symfony propel:build-schema
I always build the Schema from the Database, cause it is easier to Maintain the Database than the Schema file, you can use yoru default Database tool e.q. PhpMyAdmin or MySql Workbench, even there is no chance that sombody implements Database changes wich could be overwritten.
Generate Model
php5 symfony propel:build-model
Generating the Forms
php5 symfony propel:build-forms
Generate Module from Table
php symfony propel:generate-module --non-verbose-templates --with-show frontend post TableCamelCase
Note: the TableNameCamelCase is using Uppercase letter before any underscore
e.q. TableNameExample for table_name_example
Tracked: Jan 13, 18:30