I am running python manage.py makemigrations and it is generating a migration in dynamic_scraper app with the name like 0026_auto_20190924_1710.py. I don't know why that is necessary?
Umair Ashraf
unread,
Sep 25, 2019, 10:57:00 AM9/25/19
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
`python manage.py makemigrations` is creating a new migration inside dynamic_scraper app named 0026_auto_20190924_1813.py (the timestamp keep changing based on when makemigrations was run). This is not good because during deployment there won't be makemigrations and there won't exist that intermediate migration 0026_auto_20190924_1813.py. I know django would create such intermediate migration for proxy models but I don't think this is a proxy model, is it?
Umair Ashraf
unread,
Sep 25, 2019, 4:08:34 PM9/25/19
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message