addons-server/migrations/645-collection-backfill-slu...

8 строки
141 B
Python

from mkt.collections.models import Collection
def run():
"""Backfill slugs."""
for c in Collection.objects.all():
c.save()