Merge branch 'carrotquest-issue-89-fix' into develop

This commit is contained in:
Itai Shirav 2018-12-14 08:22:22 +02:00
commit 3620b5889d

View File

@ -118,6 +118,7 @@ class Database(object):
Deletes the database on the ClickHouse server.
'''
self._send('DROP DATABASE `%s`' % self.db_name)
self.db_exists = False
def create_table(self, model_class):
'''