Skip to content

Commit 5cc81c3

Browse files
authored
Solve conflict migrations (#553)
1 parent aac4e02 commit 5cc81c3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pycompanies/migrations/0004_remove_company_owner.py renamed to pycompanies/migrations/0005_remove_company_owner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
class Migration(migrations.Migration):
77

88
dependencies = [
9-
('pycompanies', '0003_usercompanyprofile'),
9+
('pycompanies', '0004_alter_usercompanyprofile_user'),
1010
]
1111

1212
operations = [

pycompanies/migrations/0005_company_owner_to_usercompanyprofile.py renamed to pycompanies/migrations/0006_company_owner_to_usercompanyprofile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def backward(apps, schema_editor):
2323
class Migration(migrations.Migration):
2424

2525
dependencies = [
26-
('pycompanies', '0004_alter_usercompanyprofile_user'),
26+
('pycompanies', '0005_remove_company_owner'),
2727
]
2828

2929
operations = [migrations.RunPython(forward, backward)]

0 commit comments

Comments
 (0)