diff options
| author | Stephan Groß | 2013-03-04 14:04:03 +0100 | 
|---|---|---|
| committer | Stephan Groß | 2013-03-04 14:04:03 +0100 | 
| commit | d6391359f5cf4be394cf5785edab882f28cb225a (patch) | |
| tree | 7eaa9876b96436a77feaf490382271d16133d643 /rest_framework | |
| parent | 4cdb6b2959f6d13417c48781d53c4e7e685934e7 (diff) | |
| download | django-rest-framework-d6391359f5cf4be394cf5785edab882f28cb225a.tar.bz2 | |
Fix fix migrate authtoken
Diffstat (limited to 'rest_framework')
| -rw-r--r-- | rest_framework/authtoken/migrations/0001_initial.py | 2 | ||||
| -rw-r--r-- | rest_framework/settings.py | 3 | 
2 files changed, 0 insertions, 5 deletions
| diff --git a/rest_framework/authtoken/migrations/0001_initial.py b/rest_framework/authtoken/migrations/0001_initial.py index b0c81bf1..b7c563af 100644 --- a/rest_framework/authtoken/migrations/0001_initial.py +++ b/rest_framework/authtoken/migrations/0001_initial.py @@ -17,8 +17,6 @@ else:  class Migration(SchemaMigration): -    depends_on = api_settings.REQUIRED_MIGRATIONS -      def forwards(self, orm):          # Adding model 'Token'          db.create_table('authtoken_token', ( diff --git a/rest_framework/settings.py b/rest_framework/settings.py index 31912215..b7aa0bbe 100644 --- a/rest_framework/settings.py +++ b/rest_framework/settings.py @@ -76,9 +76,6 @@ DEFAULTS = {      'URL_FORMAT_OVERRIDE': 'format',      'FORMAT_SUFFIX_KWARG': 'format', - -    # Authtoken -    'REQUIRED_MIGRATIONS': (),  } | 
