ワンクリックで
django-run-migrations
Steps for generating and applying Django migrations
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Steps for generating and applying Django migrations
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
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.