diff options
| author | Lucas Wiman | 2015-01-27 19:01:40 -0800 | 
|---|---|---|
| committer | Lucas Wiman | 2015-01-27 19:30:44 -0800 | 
| commit | a1eba885e287f59dd269441dfebb3b3de3eea692 (patch) | |
| tree | df06b03bd08b59625c1abfe9744be2537fc772c8 /rest_framework | |
| parent | 0daf160946db4f2fed6a237136d738d954b841c0 (diff) | |
| download | django-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.py | 2 | 
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'}, | 
