Commit d6391359 by Stephan Groß

Fix fix migrate authtoken

parent 4cdb6b29
......@@ -174,16 +174,4 @@ The name of a parameter in the URL conf that may be used to provide a format suf
Default: `'format'`
## REQUIRED_MIGRATIONS
This is a list of required migrations which are needed by the authtoken migration.
E.g.
(
('users', '0001_initial'),
)
Default: `'()'`
[cite]: http://www.python.org/dev/peps/pep-0020/
......@@ -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', (
......
......@@ -76,9 +76,6 @@ DEFAULTS = {
'URL_FORMAT_OVERRIDE': 'format',
'FORMAT_SUFFIX_KWARG': 'format',
# Authtoken
'REQUIRED_MIGRATIONS': (),
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment