@imlegend19 api_view is related to djangorestframework and it is not meant to be asked here, I guess.
Just for your info, you can use this decorator to directly create functions (w/o creating a class) which will behave as it was created inside a class that inherits APIView.
python manage.py makemigrations --dry-run
on my local machine, it yields No changes detected.
, but on my CI server, checking out to the same branch and running the makemigrations
command actually detects changes on one of my models
makemigrations
and push the migration files to the server
makemigrations --check --dry-run
at the top of our CI build
makemigrations
makemigrations
cares about what migrations have run or haven't been run?