Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it safe to rename Django migrations file?

Since Django 1.8 the makemigrations command has a --name, -n option to specify custom name for the created migrations file.

I'd like to know whether it's safe in older versions of Django to create the migrations file with the automatically generated name and then rename the file manually. It seems to work as expected. Are there any potential risks?

like image 739
geckon Avatar asked May 24 '15 16:05

geckon


People also ask

Is it safe to delete migrations Django?

Deleting migration files means losing your history. This historical info is recorded in the django_migrations table in your database. if you delete migration files, you will get dependency errors. So Don't try to lose your history by deleting your migration files.

Can I rename a model in Django?

In the current version of Django you can rename the model and run python manage.py makemigrations , django will then ask if you want to rename the model and if you select yes, then all renaming process will be done automatically.

Is Django migration necessary?

Migrations are not required. They can be useful for creating and tracking database changes via code, but Django applications will run properly without them.


2 Answers

This works, with a minor caveat: Django will no longer know that the renamed migration is applied.

So the steps to renaming a migration are:

  1. Rename the file.
  2. Repoint any dependencies to the new file.
  3. If the renamed migration was already applied, apply it again using --fake.

If it's a brand new migration, 2 and 3 won't apply, and it's perfectly fine to rename them.

like image 122
knbk Avatar answered Sep 22 '22 08:09

knbk


This is happens in Django every time migrations are squashed. A new file is generated thats contains the class variable replaces, this lists the migration files that are being replaced.

So to rename a file migration file add in the following variable in the Migration class:

replaces = [('app name', 'migration file name'), ] 

And everything works like it did before the file change.

like image 37
oden Avatar answered Sep 22 '22 08:09

oden