Skip to content

Instantly share code, notes, and snippets.

@nicordev
Last active June 29, 2020 14:34
Show Gist options
  • Save nicordev/791e1c30ae45afa5857a44b18fe5d98d to your computer and use it in GitHub Desktop.
Save nicordev/791e1c30ae45afa5857a44b18fe5d98d to your computer and use it in GitHub Desktop.
Symfony: doctrine commands
#!/bin/sh
php bin/console doctrine:database:drop --if-exists --force && \
php bin/console doctrine:database:drop --env=test --if-exists --force && \
php bin/console doctrine:database:create && \
php bin/console doctrine:migrations:migrate --no-interaction && \
php bin/console hautelook:fixtures:load --quiet
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment