aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework
diff options
context:
space:
mode:
authorLucas Wiman2015-01-27 19:01:40 -0800
committerLucas Wiman2015-01-27 19:30:44 -0800
commita1eba885e287f59dd269441dfebb3b3de3eea692 (patch)
treedf06b03bd08b59625c1abfe9744be2537fc772c8 /rest_framework
parent0daf160946db4f2fed6a237136d738d954b841c0 (diff)
downloaddjango-rest-framework-a1eba885e287f59dd269441dfebb3b3de3eea692.tar.bz2
Use the proper db_table argument when constructing meta
Diffstat (limited to 'rest_framework')
-rw-r--r--rest_framework/authtoken/south_migrations/0001_initial.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rest_framework/authtoken/south_migrations/0001_initial.py b/rest_framework/authtoken/south_migrations/0001_initial.py
index 926de02b..5b927f3e 100644
--- a/rest_framework/authtoken/south_migrations/0001_initial.py
+++ b/rest_framework/authtoken/south_migrations/0001_initial.py
@@ -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'},