Run 2to3-3.4
[mygpo.git] / mygpo / podcasts / migrations / 0028_episode_indexes.py
blobd8a7858cf852e6e66487de60e42563512af13431
1 # -*- coding: utf-8 -*-
4 from django.db import models, migrations
7 class Migration(migrations.Migration):
9 dependencies = [
10 ('podcasts', '0027_episode_index'),
13 operations = [
14 migrations.AlterField(
15 model_name='podcast',
16 name='related_podcasts',
17 field=models.ManyToManyField(related_name='related_podcasts_rel_+', to=b'podcasts.Podcast'),
19 migrations.AlterIndexTogether(
20 name='episode',
21 index_together=set([('released', 'podcast'), ('podcast', 'released'), ('podcast', 'outdated', 'released')]),