From 9622886ad3089b22a8b33f97a629837bef230f4e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Stefan=20K=C3=B6gl?= Date: Sun, 2 Nov 2014 10:42:11 +0100 Subject: [PATCH] [Podcasts] fix model migration with self-reference --- mygpo/podcasts/migrations/0028_episode_indexes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mygpo/podcasts/migrations/0028_episode_indexes.py b/mygpo/podcasts/migrations/0028_episode_indexes.py index d8a7858c..73d6e631 100644 --- a/mygpo/podcasts/migrations/0028_episode_indexes.py +++ b/mygpo/podcasts/migrations/0028_episode_indexes.py @@ -14,7 +14,7 @@ class Migration(migrations.Migration): migrations.AlterField( model_name='podcast', name='related_podcasts', - field=models.ManyToManyField(related_name='related_podcasts_rel_+', to=b'podcasts.Podcast'), + field=models.ManyToManyField(related_name='related_podcasts_rel_+', to='self'), ), migrations.AlterIndexTogether( name='episode', -- 2.11.4.GIT