1👍
✅
You can use this snippet to rebuild the AppCache. Do not forget to remove all *.pyc files if any by using something like:
find . -name "*.pyc" -exec rm {} \;
Otherwise the reload() will ignore your changes in your models.py file.
Source:stackexchange.com