Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
benzkji committed Oct 18, 2017
1 parent b072d8f commit 91bcbf9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 91bcbf9

Please sign in to comment.