Add missing migration

This commit is contained in:
Ben Sturmfels 2024-03-19 22:14:55 +11:00
parent 2bf73e35fa
commit 283bb5d330
Signed by: bsturmfels
GPG key ID: 023C05E2C9C068F0

View file

@ -0,0 +1,18 @@
# Generated by Django 4.2.11 on 2024-03-19 07:13
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('podjango', '0001_initial'),
]
operations = [
migrations.AlterField(
model_name='cast',
name='tags',
field=models.ManyToManyField(blank=True, to='podjango.casttag'),
),
]