From ddb85bd8c1fb02807e4e887b5c6030c675c53bc3 Mon Sep 17 00:00:00 2001 From: Ben Sturmfels Date: Fri, 20 Oct 2023 17:05:35 +1100 Subject: [PATCH] Fix podjango migrations Required an updated following code restructuring. --- www/podjango/migrations/0001_initial.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/podjango/migrations/0001_initial.py b/www/podjango/migrations/0001_initial.py index a9cb5a22..cb1c5d5c 100644 --- a/www/podjango/migrations/0001_initial.py +++ b/www/podjango/migrations/0001_initial.py @@ -38,7 +38,7 @@ class Migration(migrations.Migration): ('duration', models.CharField(help_text='length in hh:mm:ss of mp3 file', max_length=8)), ('date_created', models.DateTimeField(auto_now_add=True)), ('date_last_modified', models.DateTimeField(auto_now=True)), - ('tags', models.ManyToManyField(blank=True, to='cast.CastTag')), + ('tags', models.ManyToManyField(blank=True, to='CastTag')), ], options={ 'verbose_name_plural': 'casts',