Merge pull request #2479 from lucaswiman/custom_user_shim_db_table

Use the proper db_table argument when constructing meta
This commit is contained in:
Tom Christie 2015-01-28 09:20:27 +00:00
commit 81c2562ec4

View File

@ -40,7 +40,7 @@ class Migration(SchemaMigration):
'name': ('django.db.models.fields.CharField', [], {'max_length': '50'})
},
"%s.%s" % (User._meta.app_label, User._meta.module_name): {
'Meta': {'object_name': User._meta.module_name},
'Meta': {'object_name': User._meta.module_name, 'db_table': repr(User._meta.db_table)},
},
'authtoken.token': {
'Meta': {'object_name': 'Token'},