Changeset - 283bb5d330cf
[Not reviewed]
0 0 1
Ben Sturmfels (bsturmfels) - 1 month ago 2024-03-19 11:14:55
ben@sturm.com.au
Add missing migration
1 file changed with 18 insertions and 0 deletions:
0 comments (0 inline, 0 general)
conservancy/podjango/migrations/0002_alter_cast_tags.py
Show inline comments
 
new file 100644
 
# 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'),
 
        ),
 
    ]
0 comments (0 inline, 0 general)