Fix podjango migrations
Required an updated following code restructuring.
This commit is contained in:
parent
838fdcbfa4
commit
ddb85bd8c1
1 changed files with 1 additions and 1 deletions
|
@ -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',
|
||||
|
|
Loading…
Reference in a new issue