Answers for "django migrations back"

0

reverse a django migration

# You need to identify the last migration to which you want
# to reverse and use it as the migration target

python manage.py migrate my_app_name target_migration
Posted by: Guest on August-13-2021
0

django dump previous migrations

python manage.py makemigrations your_app
python manage.py migrate your_app
Posted by: Guest on August-28-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language