We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc16b1f commit 2778d13Copy full SHA for 2778d13
piccolo/apps/migrations/auto/integration/test_migrations.py
@@ -18,7 +18,9 @@
18
19
class TestMigrations(TestCase):
20
def tearDown(self):
21
- create_table_class("MyTable").alter().drop_table(if_exists=True)
+ create_table_class("MyTable").alter().drop_table(
22
+ if_exists=True
23
+ ).run_sync()
24
25
def run_migrations(self, app_config: AppConfig):
26
manager = ForwardsMigrationManager(app_name=app_config.app_name)
0 commit comments