What is the procedure for completely uninstalling a Django app, complete with database removal?
|
|||||||
|
|
django app is a "set" of *.py files and a directory with a django-app-name. So you can simply delete the whole folder with all *.py files To "remove" tables from DB you should use Furthermore, you have to delete lines witgh app-name from setting.py in a root directory |
|||