feat(justfile): Add migrate and make-migrations commands for database management

This commit is contained in:
2025-07-03 17:13:41 +05:00
parent c07d3c93d2
commit 367ccf0f88

View File

@ -4,3 +4,9 @@ default:
dev: dev:
python manage.py runserver python manage.py runserver
python manage.py procrastinate worker python manage.py procrastinate worker
migrate:
python manage.py migrate
make-migrations:
python manage.py makemigrations