Fix fix migrate authtoken

This commit is contained in:
Stephan Groß 2013-03-04 14:04:03 +01:00
parent 4cdb6b2959
commit d6391359f5
3 changed files with 0 additions and 17 deletions

View File

@ -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/

View File

@ -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', (

View File

@ -76,9 +76,6 @@ DEFAULTS = {
'URL_FORMAT_OVERRIDE': 'format',
'FORMAT_SUFFIX_KWARG': 'format',
# Authtoken
'REQUIRED_MIGRATIONS': (),
}