Answers for "how to roll back the migration to the first time in django"

1

revert a migration django

python manage.py migrate <your-app> <migration number>
# eg
python manage.py migrate my_app 0001
Posted by: Guest on September-25-2020
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 "how to roll back the migration to the first time in django"

Python Answers by Framework

Browse Popular Code Answers by Language