-
Create database php bin/console doctrine:database:create
-
Create/Update the schema php bin/console doctrine:schema:create php bin/console doctrine:schema:update --force
If need Creating the Database Tables/Schema php bin/console make:migration php bin/console doctrine:migrations:migrate
- To mock up users php bin/console doctrine:fixtures:load
To run the server php bin/console server:start
Create entity php bin/console make:entity
Run a query php bin/console doctrine:query:sql 'SELECT * FROM users'