Skip to content

Commit ae5caf9

Browse files
Missing information about migrations - Fixes issue #57
1 parent 2d4aaf6 commit ae5caf9

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,12 @@ INSTALLED_APPS = (
3434
)
3535
```
3636

37-
3. This package provides two endpoints, which can be included by including ``django_rest_passwordreset.urls`` in your ``urls.py`` as follows:
37+
3. This package stores tokens in a separate database table (see [django_rest_passwordreset/models.py](django_rest_passwordreset/models.py)). Therefor you have to run django migrations:
38+
```bash
39+
python manage.py migrate
40+
```
41+
42+
4. This package provides two endpoints, which can be included by including ``django_rest_passwordreset.urls`` in your ``urls.py`` as follows:
3843
```python
3944
from django.conf.urls import url, include
4045

0 commit comments

Comments
 (0)