Merge branch 'issue-89-fix' of https://github.com/carrotquest/infi.clickhouse_orm into carrotquest-issue-89-fix

This commit is contained in:
Itai Shirav 2018-12-14 08:21:29 +02:00
commit 3478e59dd3

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):
'''