Browse Source

Fix ordre des migrations

Fix_strange_foreign_key_state
Gabriel Detraz 8 years ago
committed by root
parent
commit
1a59c85577
  1. 5
      topologie/migrations/0051_switchs_machine.py
  2. 6
      topologie/migrations/0052_transferports.py
  3. 5
      topologie/migrations/0053_finalsw.py

5
topologie/migrations/0052_switchs_machine.py → topologie/migrations/0051_switchs_machine.py

@ -9,7 +9,7 @@ import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('topologie', '0051_transferports'),
('topologie', '0050_port_new_switch'),
]
def transfer_sw(apps, schema_editor):
@ -36,7 +36,4 @@ class Migration(migrations.Migration):
operations = [
migrations.RunPython(transfer_sw, untransfer_sw),
migrations.DeleteModel(
name='Switch',
),
]

6
topologie/migrations/0051_transferports.py → topologie/migrations/0052_transferports.py

@ -8,7 +8,7 @@ from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('topologie', '0050_port_new_switch'),
('topologie', '0051_switchs_machine'),
]
def transfer_port(apps, schema_editor):
@ -24,6 +24,10 @@ class Migration(migrations.Migration):
return
operations = [
migrations.AlterUniqueTogether(
name='port',
unique_together=set([]),
),
migrations.RunPython(transfer_port, untransfer_port),
migrations.RemoveField(
model_name='port',

5
topologie/migrations/0053_finalsw.py

@ -9,12 +9,15 @@ import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('topologie', '0052_switchs_machine'),
('topologie', '0052_transferports'),
]
operations = [
migrations.DeleteModel(
name='Switch',
),
migrations.RenameModel(
old_name='NewSw',
new_name='Switch',

Loading…
Cancel
Save