Commit 4789a60746ea3aba6d87ad102a9c96cf7f2385a9
Exists in
master
and in
1 other branch
Merge pull request #418 from theoziran/issue344
Fix pensandoodireito/participacao-sitebase#344
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
Vagrantfile
... | ... | @@ -19,8 +19,8 @@ service apache2 start |
19 | 19 | |
20 | 20 | service mysql start |
21 | 21 | |
22 | -mysql --user=root --password=root -h 127.0.0.1 -e 'drop database participacao' | |
23 | -mysql --user=root --password=root -h 127.0.0.1 -e 'create database participacao' | |
22 | +mysql --user=root --password=root -h 127.0.0.1 -e 'DROP DATABASE IF EXISTS participacao' | |
23 | +mysql --user=root --password=root -h 127.0.0.1 -e 'CREATE DATABASE participacao' | |
24 | 24 | cd /vagrant/db |
25 | 25 | bunzip2 db.sql.bz2 |
26 | 26 | mysql --user=root --password=root -h 127.0.0.1 participacao < /vagrant/db/db.sql | ... | ... |
db/db.sql.bz2
No preview for this file type