Improve compatibility with additional mysql installations.

Some mysql debian packages do not grant mysql user as many permissions, and
we need to add them.
This commit is contained in:
Ben Patterson
2014-11-12 22:11:56 -05:00
parent 24039fb813
commit 8e2d794264

View File

@@ -26,6 +26,7 @@ DB_CACHE_DIR="common/test/db_cache"
# Ensure the test database exists.
echo "CREATE DATABASE IF NOT EXISTS test;" | mysql -u root
echo "GRANT ALL ON test.* TO mysql@localhost" | mysql -u root
# Clear out the test database
./manage.py lms --settings bok_choy reset_db --traceback --noinput