Fix typo setting mysql engine

For the runs table migration the mysql_engine param was set as true
which obviously isn't a valid mysql_engine. This commit fixes it
and sets it to the proper innodb.
This commit is contained in:
Matthew Treinish
2014-06-20 15:30:57 -04:00
parent 355c57c7bd
commit 937a0774c7

View File

@@ -37,7 +37,7 @@ def upgrade():
sa.Column('passes', sa.Integer()),
sa.Column('run_time', sa.Float()),
sa.Column('artifacts', sa.Text()),
mysql_engine=True)
mysql_engine='InnoDB')
def downgrade():