I understand migrate sets up the database according to the migration, but the scope of it's operation seems to go beyond that.
When I ran manage.py migrate, not only did it apply the database migrations, which is good, but it also went through the main url.py and started to execute the methods I had in there which I would like only to be executed only once when the "web starts".
What does migrate actually do?
Thanks!