Opened 10 years ago
Closed 8 years ago
#24528 closed Bug (duplicate)
Migration fails because of duplicate constraint name when renaming and re-creating a model
Reported by: | Remiremi | Owned by: | nobody |
---|---|---|---|
Component: | Migrations | Version: | 1.7 |
Severity: | Normal | Keywords: | |
Cc: | Triage Stage: | Accepted | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
I have reached a point where django migration fails because it tries to create a constraint with a name that is already used by another constraint. I am using MySQL and tried with both PyMySQL connector and Oracle's mysql-connector-python. I might be wrong but I suspect the same would happen with other connectors or with PostgreSQL. I have tried with Django 1.7.6 and 1.7.7.
- Create model ModelB with a FK on ModelA
class ModelA(models.Model): pass class ModelB(models.Model): a = models.ForeignKey(ModelA)
- Run manage.py makemigrations.
- Rename ModelB to ModelC
class ModelA(models.Model): pass class ModelC(models.Model): a = models.ForeignKey(ModelA)
- Run manage.py makemigrations. When asked whether you renamed ModelB to ModelC, answer yes.
- Add back Model B
class ModelA(models.Model): pass class ModelC(models.Model): a = models.ForeignKey(ModelA) class ModelB(models.Model): a = models.ForeignKey(ModelA)
- Run manage.py makemigrations
- Run manage.py migrate
This last step fails with error
django.db.utils.InternalError: (1022, u"Can't write; duplicate key in table '#sql-37bd_127'")
The django.db log shows that the SQL query causing the failure is:
[24/Mar/2015 11:11:46] DEBUG [django.db.backends.schema:94] ALTER TABLE `myapp_modelb` ADD CONSTRAINT `myapp_modelb_a_id_73cac46a7c85ae49_fk_myapp_modela_id` FOREIGN KEY (`modela_id`) REFERENCES `myapp_modela` (`id`); (params [])
After inspection of the database, ModelC does have a constraint with that name.
It's probably possible to go around this issue by renaming ModelC'S constraint, but the same failure also happens when building the test database by running manage.py test. I do not have a workaround for that case.
Full output of the migration is attached.
Attachments (1)
Change History (5)
by , 10 years ago
Attachment: | migration_error.txt added |
---|
comment:1 by , 10 years ago
Triage Stage: | Unreviewed → Accepted |
---|
comment:2 by , 10 years ago
Just to get that straight: before migrating myapp.0003
, ModelC
still has a constraint, right? And while migrating myapp.0003
the table for ModelB
is created and when adding the constraint to ModelB
's table, migrate
blows up?
I can confirm that the same thing happens with postgres: