Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 264 Bytes

MIGRATIONS.md

File metadata and controls

13 lines (10 loc) · 264 Bytes

Django Migrations

To make migrations files depending on your models

python manage.py makemigrations <app_name>

To run the actual migrations

python manage.py migrate

NOTE: You have to repeate this two commands every time you change your models