blob: e6f9c8a45e8cb4cc2f9dea8a60180587ddc648d6 (
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 20:36
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("watch", "0004_alter_anime_countryoforigin_and_more"),
]
operations = [
migrations.AddField(
model_name="anime",
name="last_updated",
field=models.DateTimeField(auto_now=True),
),
]
|