aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide/authentication.md
diff options
context:
space:
mode:
authorJames Rutherford2013-07-29 10:16:15 +0100
committerJames Rutherford2013-07-29 10:16:15 +0100
commit1a4ff1567ea4231cde9a2f23725550a754f3f54c (patch)
treee003021ee8a2e510901131878914a613783e3561 /docs/api-guide/authentication.md
parent856dc855c952746f566a6a8de263afe951362dfb (diff)
downloaddjango-rest-framework-1a4ff1567ea4231cde9a2f23725550a754f3f54c.tar.bz2
Updated authtoken docs to mention south migrations
Diffstat (limited to 'docs/api-guide/authentication.md')
-rwxr-xr-xdocs/api-guide/authentication.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api-guide/authentication.md b/docs/api-guide/authentication.md
index ee1282b5..fd6bfb56 100755
--- a/docs/api-guide/authentication.md
+++ b/docs/api-guide/authentication.md
@@ -121,7 +121,7 @@ To use the `TokenAuthentication` scheme, include `rest_framework.authtoken` in y
'rest_framework.authtoken'
)
-Make sure to run `manage.py syncdb` after changing your settings.
+Make sure to run `manage.py syncdb` after changing your settings. The `authtoken` database tables are managed by south (see [Schema migrations](#schema-migrations) below).
You'll also need to create tokens for your users.