Custom SQL In Django Migration
In my project, one use case came with custom SQL migration.
Step1:
Create the empty migration
python manage.py makemigrations <project_name> --empty -n <relevant message>
# python manage.py makemigrations app --empty -n creating_users
Step 2:
Open c...
venkatesh.hashnode.dev1 min read