Changing migration dependency of contenttypes to 0001_initial for support for Django 1.7

This commit is contained in:
Corey Oordt 2015-04-23 18:22:20 -05:00
parent 87f985992b
commit c6b7cdd520
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@ __version_info__ = {
'minor': 3,
'micro': 0,
'releaselevel': 'beta',
'serial': 1
'serial': 3
}

View file

@ -9,7 +9,7 @@ import mptt.fields
class Migration(migrations.Migration):
dependencies = [
('contenttypes', '0002_remove_content_type_name'),
('contenttypes', '0001_initial'),
]
operations = [