Fixed an issue with case sensitivity in table names for the migrations. Fixed issue with transactions when converting nicks and aliases.

This commit is contained in:
Kelketek 2013-07-19 17:13:57 -05:00
parent 90faaf9d01
commit da097a88d9
2 changed files with 18 additions and 1 deletions

View file

@ -8,7 +8,7 @@ class Migration(SchemaMigration):
def forwards(self, orm):
db.rename_table('players_PlayerDBtmp', 'players_PlayerDB')
db.rename_table('players_playerdbtmp', 'players_playerdb')
def backwards(self, orm):
raise RuntimeError("Cannot revert this migration.")