Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Move models between Django (1.8) apps with required ForeignKey references

This is an extension to this question: How to move a model between two Django apps (Django 1.7)

I need to move a bunch of models from old_app to new_app. The best answer seems to be Ozan's, but with required foreign key references, things are bit trickier. @halfnibble presents a solution in the comments to Ozan's answer, but I'm still having trouble with the precise order of steps (e.g. when do I copy the models over to new_app, when do I delete the models from old_app, which migrations will sit in old_app.migrations vs. new_app.migrations, etc.)

Any help is much appreciated!

like image 218
Shreyas Avatar asked Jun 02 '15 16:06

Shreyas


People also ask

What is the difference between makemigrations and migrate?

migrate , which is responsible for applying and unapplying migrations. makemigrations , which is responsible for creating new migrations based on the changes you have made to your models.

What is Foreignkey Django models?

Introduction to Django Foreign Key. A foreign key is a process through which the fields of one table can be used in another table flexibly. So, two different tables can be easily linked by means of the foreign key. This linking of the two tables can be easily achieved by means of foreign key processes.

How to squash Django migrations?

In Django's migrations code, there's a squashmigrations command which: "Squashes the migrations for app_label up to and including migration_name down into fewer migrations, if possible." So, if you want to squash, say, the first 5 migrations, this will help.


2 Answers

Migrating a model between apps.

The short answer is, don't do it!!

But that answer rarely works in the real world of living projects and production databases. Therefore, I have created a sample GitHub repo to demonstrate this rather complicated process.

I am using MySQL. (No, those aren't my real credentials).

The Problem

The example I'm using is a factory project with a cars app that initially has a Car model and a Tires model.

factory   |_ cars     |_ Car     |_ Tires 

The Car model has a ForeignKey relationship with Tires. (As in, you specify the tires via the car model).

However, we soon realize that Tires is going to be a large model with its own views, etc., and therefore we want it in its own app. The desired structure is therefore:

factory   |_ cars     |_ Car   |_ tires     |_ Tires 

And we need to keep the ForeignKey relationship between Car and Tires because too much depends on preserving the data.

The Solution

Step 1. Setup initial app with bad design.

Browse through the code of step 1.

Step 2. Create an admin interface and add a bunch of data containing ForeignKey relationships.

View step 2.

Step 3. Decide to move the Tires model to its own app. Meticulously cut and paste code into the new tires app. Make sure you update the Car model to point to the new tires.Tires model.

Then run ./manage.py makemigrations and backup the database somewhere (just in case this fails horribly).

Finally, run ./manage.py migrate and see the error message of doom,

django.db.utils.IntegrityError: (1217, 'Cannot delete or update a parent row: a foreign key constraint fails')

View code and migrations so far in step 3.

Step 4. The tricky part. The auto-generated migration fails to see that you've merely copied a model to a different app. So, we have to do some things to remedy this.

You can follow along and view the final migrations with comments in step 4. I did test this to verify it works.

First, we are going to work on cars. You have to make a new, empty migration. This migration actually needs to run before the most recently created migration (the one that failed to execute). Therefore, I renumbered the migration I created and changed the dependencies to run my custom migration first and then the last auto-generated migration for the cars app.

You can create an empty migration with:

./manage.py makemigrations --empty cars 

Step 4.a. Make custom old_app migration.

In this first custom migration, I'm only going to perform a "database_operations" migration. Django gives you the option to split "state" and "database" operations. You can see how this is done by viewing the code here.

My goal in this first step is to rename the database tables from oldapp_model to newapp_model without messing with Django's state. You have to figure out what Django would have named your database table based on the app name and model name.

Now you are ready to modify the initial tires migration.

Step 4.b. Modify new_app initial migration

The operations are fine, but we only want to modify the "state" and not the database. Why? Because we are keeping the database tables from the cars app. Also, you need to make sure that the previously made custom migration is a dependency of this migration. See the tires migration file.

So, now we have renamed cars.Tires to tires.Tires in the database, and changed the Django state to recognize the tires.Tires table.

Step 4.c. Modify old_app last auto-generated migration.

Going back to cars, we need to modify that last auto-generated migration. It should require our first custom cars migration, and the initial tires migration (that we just modified).

Here we should leave the AlterField operations because the Car model is pointing to a different model (even though it has the same data). However, we need to remove the lines of migration concerning DeleteModel because the cars.Tires model no longer exists. It has fully converted into tires.Tires. View this migration.

Step 4.d. Clean up stale model in old_app.

Last but not least, you need to make a final custom migration in the cars app. Here, we will do a "state" operation only to delete the cars.Tires model. It is state-only because the database table for cars.Tires has already been renamed. This last migration cleans up the remaining Django state.

like image 181
Nostalg.io Avatar answered Sep 22 '22 21:09

Nostalg.io


Just now moved two models from old_app to new_app, but the FK references were in some models from app_x and app_y, instead of models from old_app.

In this case, follow the steps provided by Nostalg.io like this:

  • Move the models from old_app to new_app, then update the import statements across the code base.
  • makemigrations.
  • Follow Step 4.a. But use AlterModelTable for all moved models. Two for me.
  • Follow Step 4.b. as is.
  • Follow Step 4.c. But also, for each app that has a newly generated migration file, manually edit them, so you migrate the state_operations instead.
  • Follow Step 4.d But use DeleteModel for all moved models.

Notes:

  • All the edited auto-generated migration files from other apps have a dependency on the custom migration file from old_app where AlterModelTable is used to rename the table(s). (created in Step 4.a.)
  • In my case, I had to remove the auto-generated migration file from old_app because I didn't have any AlterField operations, only DeleteModel and RemoveField operations. Or keep it with empty operations = []
  • To avoid migration exceptions when creating the test DB from scratch, make sure the custom migration from old_app created at Step 4.a. has all previous migration dependencies from other apps.

    old_app   0020_auto_others   0021_custom_rename_models.py     dependencies:       ('old_app', '0020_auto_others'),       ('app_x', '0002_auto_20170608_1452'),       ('app_y', '0005_auto_20170608_1452'),       ('new_app', '0001_initial'),   0022_auto_maybe_empty_operations.py     dependencies:       ('old_app', '0021_custom_rename_models'),   0023_custom_clean_models.py     dependencies:       ('old_app', '0022_auto_maybe_empty_operations'), app_x   0001_initial.py   0002_auto_20170608_1452.py   0003_update_fk_state_operations.py     dependencies       ('app_x', '0002_auto_20170608_1452'),       ('old_app', '0021_custom_rename_models'), app_y   0004_auto_others_that_could_use_old_refs.py   0005_auto_20170608_1452.py   0006_update_fk_state_operations.py     dependencies       ('app_y', '0005_auto_20170608_1452'),       ('old_app', '0021_custom_rename_models'), 

BTW: There is an open ticket about this: https://code.djangoproject.com/ticket/24686

like image 24
Lucianovici Avatar answered Sep 24 '22 21:09

Lucianovici