Django provides the ability to group sets of features into Python packages called applications. When requirements change, apps may become obsolete or unnecessary. The following steps will help you delete an application safely.
models.py
file.makemigrations
. This step
generates a migration that deletes tables for the removed models, and any
other required migration for updating relationships connected to those
models.INSTALLED_APPS
.12月 05, 2023