From 8981317b1c94eb3dc713122959b3469212b3720f Mon Sep 17 00:00:00 2001 From: Daniel Vitiello Date: Sun, 4 Jun 2017 16:54:03 -0500 Subject: [PATCH] Add step to remind user to migrate their database I didn't do this and spent a while tracking down errors with CSRF and Token Validation. --- docs/installation.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/installation.rst b/docs/installation.rst index 6144011..7508cd0 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -31,7 +31,13 @@ Installation url(r'^rest-auth/', include('rest_auth.urls')) ) +4. Migrate your database +.. code-block:: python + + python manage.py migrate + + You're good to go now!