Commit b0023b43 authored by Julien Muchembled's avatar Julien Muchembled

mysql: drop 'bigdata' table when erasing the database

This was forgotten when this table was introduced in
commit f9a8500d
parent 9d24294a
......@@ -141,8 +141,8 @@ class MySQLDatabaseManager(DatabaseManager):
return self.conn.escape_string
def erase(self):
self.query(
"DROP TABLE IF EXISTS config, pt, trans, obj, data, ttrans, tobj")
self.query("DROP TABLE IF EXISTS"
" config, pt, trans, obj, data, bigdata, ttrans, tobj")
def _setup(self):
self._config.clear()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment