Changeset - ddb85bd8c1fb
[Not reviewed]
0 1 0
Ben Sturmfels (bsturmfels) - 6 months ago 2023-10-20 06:05:35
ben@sturm.com.au
Fix podjango migrations

Required an updated following code restructuring.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
www/podjango/migrations/0001_initial.py
Show inline comments
...
 
@@ -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',
0 comments (0 inline, 0 general)