Skip to content

Instantly share code, notes, and snippets.

@Raphy
Created April 4, 2015 13:46
Show Gist options
  • Save Raphy/fb96db795fd0a74297d9 to your computer and use it in GitHub Desktop.
Save Raphy/fb96db795fd0a74297d9 to your computer and use it in GitHub Desktop.
Symfony Tool Script : Rebuild the database quickly
#!/bin/sh
app/console doctrine:database:drop --force
app/console doctrine:database:create
app/console doctrine:schema:update --force
app/console doctrine:fixtures:load -n # Remove this line if the bundle « doctrine/doctrine-fixtures-bundle » is not required by the project
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment