Skip to content

Commit

Permalink
Sets default MySql engine to InnoDB
Browse files Browse the repository at this point in the history
Fixes bug 1153594

Change-Id: I4a3de87a99ca2d49b6a74d7104daf47f8f421a80
  • Loading branch information
Gary Kotton committed Mar 11, 2013
1 parent 5a2ef81 commit 913586b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions quantum/db/model_base.py
Expand Up @@ -20,6 +20,7 @@

class QuantumBase(object):
"""Base class for Quantum Models."""
__table_args__ = {'mysql_engine': 'InnoDB'}

def __setitem__(self, key, value):
setattr(self, key, value)
Expand Down

0 comments on commit 913586b

Please sign in to comment.