Changes between Initial Version and Version 1 of Ticket #27044, comment 5
- Timestamp:
- Aug 10, 2016, 4:02:11 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #27044, comment 5
initial v1 33 33 }}} 34 34 35 The django_content_type table has not changed. There should be a new line in django_content_type (app_label = app and model = mysecondmodel), and it's not there because the ``update_contenttypes`` cannot proceed further than line 102 when `migrate` is called a second time.35 The `django_content_type` table has not changed. There should be a new line in `django_content_type` (app_label = app and model = mysecondmodel), and it's not there because `update_contenttypes` cannot proceed further than line 102 when `migrate` is called a second time. 36 36 37 37 A possible solution would be to transform `app` into a migrated app (I haven't checked it though), but given that it worked ok in django 1.9.9 I see this as a regression.