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 09f9e0b commit 730874dCopy full SHA for 730874d
piccolo/apps/migrations/commands/forwards.py
@@ -100,15 +100,13 @@ async def run_forwards(
100
if not response.success:
101
return response
102
103
+ return MigrationResult(success=True)
104
+
105
else:
106
manager = ForwardsMigrationManager(
107
app_name=app_name, migration_id=migration_id, fake=fake
108
)
- response = await manager.run()
- if not response.success:
109
- return response
110
-
111
- return MigrationResult(success=True)
+ return await manager.run()
112
113
114
async def forwards(
0 commit comments