Jeden Skill in Manus ausführen
mit einem Klick
mit einem Klick
Jeden Skill in Manus mit einem Klick ausführen
Loslegen$pwd:
$ git log --oneline --stat
stars:1.629
forks:385
updated:7. April 2026 um 10:21
Datei-Explorer
SKILL.md
Steps for creating or modifying Django forms and adding validation
Steps for adding a new Django REST Framework API endpoint
Steps for creating or modifying a Django model
Steps for initiating the Django development server without Docker
Docker Compose, container services, deployment
How to update project documentation
| name | django-run-migrations |
| description | Steps for generating and applying Django migrations |
Use this skill continuously after modifying any models.py schema logic to apply the changes to the database.
cd app/python manage.py makemigrationspython manage.py migrate.py migration output to ensure logical alignment with your model edits.If your changes in Django models don't cause a change in the actual database schema, you don't need to create a migration at all.
Typical changes that do not affect the DB schema include:
choicesverbose_namehelp_textIn these cases:
makemigrations just to capture these metadata-only changes.