fix theme description migration

This commit is contained in:
Chris Van 2013-06-06 14:49:00 -07:00
Родитель 3b7a2d2729
Коммит 862ce6117f
1 изменённых файлов: 6 добавлений и 4 удалений

Просмотреть файл

@ -9,7 +9,9 @@ def run():
Migrate summary to description field for a handful of themes after
getpersonas migration.
"""
addons = Addon.objects.filter(type=amo.ADDON_PERSONA,
description__isnull=True, summary__isnull=False)
for addon in addons:
addon.update(description=addon.summary, summary='')
# addons = Addon.objects.filter(type=amo.ADDON_PERSONA,
# description__isnull=True, summary__isnull=False)
# for addon in addons:
# addon.description = addon.summary
# addon.summary = ''
# addon.save()