aboutsummaryrefslogtreecommitdiff
path: root/watch/migrations/0015_alter_anime_type.py
blob: c6f6c3ea32714806ac077fcc01707831b0f32ec3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Generated by Django 5.1 on 2024-09-03 22:31

from django.db import migrations, models


class Migration(migrations.Migration):
    dependencies = [
        ("watch", "0014_alter_anime_rating"),
    ]

    operations = [
        migrations.AlterField(
            model_name="anime",
            name="type",
            field=models.CharField(max_length=255, null=True),
        ),
    ]