From: Mike Bayer Date: Tue, 12 Mar 2013 19:43:20 +0000 (-0400) Subject: force this to innodb to support mysqls with different X-Git-Tag: rel_0_5_0~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=797e71d27e0f15d69cdf1bfcf73d407579db3e09;p=thirdparty%2Fsqlalchemy%2Falembic.git force this to innodb to support mysqls with different defaults here --- diff --git a/tests/test_autogenerate.py b/tests/test_autogenerate.py index 2f541e86..7047b9e7 100644 --- a/tests/test_autogenerate.py +++ b/tests/test_autogenerate.py @@ -151,6 +151,7 @@ class ImplicitConstraintNoGenTest(AutogenTest, TestCase): Table('someothertable', m, Column('id', Integer, primary_key=True), Column('value', Boolean()), + mysql_engine='InnoDB' ) return m @@ -199,7 +200,7 @@ class ImplicitConstraintNoGenTest(AutogenTest, TestCase): "autoincrement=False, nullable=True),\n" " sa.PrimaryKeyConstraint('id'),\n" " mysql_default_charset='utf8',\n" - " mysql_engine='MyISAM'\n" + " mysql_engine='InnoDB'\n" " )\n" " op.drop_table('sometable')\n" " ### end Alembic commands ###"