Migrations fixes revealed as necessary by the admin pages, which were also fixed.

This commit is contained in:
Kelketek 2013-07-20 13:17:41 -05:00
parent fbd1b5223b
commit 3c496af6ad
4 changed files with 99 additions and 8 deletions

View file

@ -55,7 +55,7 @@ class Migration(DataMigration):
print "Nick already exists: %s for %s" % (nick.db_nick, nick.db_obj.db_key)
# South expects the migration to be transaction managed. So start up a
# new transaction for it to close immediately when it exits this function.
db.commit_transaction()
db.start_transaction()
def backwards(self, orm):