Skip to content
This repository has been archived by the owner on Jun 12, 2018. It is now read-only.

Commit

Permalink
Only store conversations that were migrated.
Browse files Browse the repository at this point in the history
  • Loading branch information
jerith committed May 12, 2014
1 parent 5d47088 commit 8fa74a8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion go/base/management/commands/go_migrate_conversations.py
Expand Up @@ -70,7 +70,8 @@ def applies_to(self, user_api, conv):
return True

def migrate(self, user_api, conv):
conv.save()
if conv.was_migrated:
conv.save()


class FixBatches(Migration):
Expand Down

0 comments on commit 8fa74a8

Please sign in to comment.