I got this following error while running migration command:
CommandError:
Conflicting migrations detected; multiple leaf nodes in the migration graph: (0006_alter_post_slug_alter_post_title, 0003_auto_20230818_0656 in app).
The conflicts occurs on migration changes. It error indicates that there are multiple nodes, that that have no dependencies on other migrations.
SOLUTION:
python manage.py makemigrations --merge
Post your comments / questions
Recent Article
- Fix-Gradient effect turning to gray in after effects
- How to blur an image in python?
- ModuleNotFoundError: No module named 'whois' in Python GoviralHost Without Terminal
- How to Convert Image to Pencil Sketch in Python?
- AttributeError: module 'urllib' has no attribute 'request' - Python
- How to Extract audio from video files using python?
- PermissionError: [Errno 13] Permission denied: 'shampoo_sales.csv' - Python
- [WinError 145] The directory is not empty: 'FolderPath' - Python
Related Article