Skip to content

Commit

Permalink
fix checkmigrations command
Browse files Browse the repository at this point in the history
  • Loading branch information
rithviknishad committed Feb 2, 2024
1 parent c4e9eee commit eebca38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ makemigrations: up
docker exec django bash -c "python manage.py makemigrations"

checkmigration:
docker compose exec django bash -c "python manage.py makemigrations --check --dry-run"
docker exec django bash -c "python manage.py makemigrations --check --dry-run"

test: up
docker exec django bash -c "python manage.py test --keepdb --parallel=$(nproc)"
Expand Down

0 comments on commit eebca38

Please sign in to comment.