From 91bcbf904c8f1121bca5db1cd125ea5bb38a7d17 Mon Sep 17 00:00:00 2001 From: benzkji Date: Wed, 18 Oct 2017 11:46:39 +0200 Subject: [PATCH] docs --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d30d3c3..a3e340d 100644 --- a/README.md +++ b/README.md @@ -18,14 +18,14 @@ In your settings, add to `INSTALLED_APPS` ... ] -Also, you NEED to define a `MIGRATION_MODULES` entry for separate_users. As your UserModel might +Also, you NEED to define a `MIGRATION_MODULES` entry for `separate_users`. As your UserModel might be different, we cannot guess the needed migrations, so you'll need to create them yourself. MIGRATION_MODULES = { 'separate_users': 'your_apps.separate_users_migrations', } -You'll need to create this folder, with an __init__.py, then you can run +You'll need to create this folder, with an `__init__.py` in it, then you can run `./manage.py makemigrations` (try --dry-run to see if it works as you would expect). As of a django bug, you'll want to run `./manage.py fix_proxy_permissions`, otherwise your non