Update DBUpdater.cpp

This commit is contained in:
Aokromes
2016-09-12 01:00:27 +02:00
committed by GitHub
parent fe9f79780e
commit fb048a4cdb

View File

@@ -197,7 +197,7 @@ bool DBUpdater<T>::Create(DatabaseWorkerPool<T>& pool)
}
catch (UpdateException&)
{
TC_LOG_FATAL("sql.updates", "Failed to create database %s! Does the user (named in *.conf) have `CREATE`/`ALTER`/`DROP`/`INSERT`/`DELETE` privileges on the MySQL server?", pool.GetConnectionInfo()->database.c_str());
TC_LOG_FATAL("sql.updates", "Failed to create database %s! Does the user (named in *.conf) have `CREATE`, `ALTER`, `DROP`, `INSERT` and `DELETE` privileges on the MySQL server?", pool.GetConnectionInfo()->database.c_str());
boost::filesystem::remove(temp);
return false;
}