Skip to content

Commit

Permalink
Fixed #6227 -- Migrations should only depend on initial content type …
Browse files Browse the repository at this point in the history
…migration (#6260)
  • Loading branch information
czpython committed Feb 1, 2018
1 parent bf6fb4b commit e02c29b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cms/migrations/0010_migrate_use_structure.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class Migration(migrations.Migration):

dependencies = [
('cms', '0009_merge'),
('contenttypes', '__latest__'),
('contenttypes', '0001_initial'),
]

operations = [
Expand Down
2 changes: 1 addition & 1 deletion cms/migrations/0014_auto_20160404_1908.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class Migration(migrations.Migration):

dependencies = [
('cms', '0013_urlconfrevision'),
('contenttypes', '__latest__'),
('contenttypes', '0001_initial'),
]

operations = [
Expand Down

0 comments on commit e02c29b

Please sign in to comment.