Changes between Version 1 and Version 2 of Ticket #13348, comment 7
- Timestamp:
- Feb 26, 2017, 2:39:02 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #13348, comment 7
v1 v2 5 5 * pootle/apps/pootle_tagging/migrations/0002_auto__del_goal__del_itemwithgoal.py 6 6 * pootle/apps/pootle_tagging/migrations/0003_del_tag__del_taggeditem.py 7 8 To prevent the bugs from happening, perform the following in `python manage.py shell`, '''before''' upgrading the source to Pootle 2.6.2 9 {{{ 10 from django.contrib.contenttypes.models import ContentType 11 ct = ContentType.objects.filter(app_label="voting").get() 12 ct.delete() 13 ct = ContentType.objects.filter(app_label="pootle_tagging") 14 for c in ct: 15 c.delete() 16 ct = ContentType.objects.filter(app_label="taggit") 17 for c in ct: 18 c.delete() 19 }}}