Top "Django-migrations" questions

Django migrations are a way to apply changes to a database previously created, introduced in Django 1.7. This tool is used when a model is modified (adding a field, deleting a model, etc.

Remove app with Django 1.7 migrations

I would like to know whats the cleanest way to remove all tables for a removed app using Django migrations. …

django django-migrations
Django - Cannot create migrations for ImageField with dynamic upload_to value

I just upgraded my app to 1.7 (actually still trying). This is what i had in models.py: def path_and_…

python django django-migrations
Django 1.7 - makemigrations creating migration for unmanaged model

I am creating some dynamic Django models in my application and everything seems to be working as expected except for …

django django-models django-migrations