30 lines
871 B
Python
30 lines
871 B
Python
# Generated by Django 3.1 on 2020-08-17 16:07
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('core', '0004_profilo_colore_tema'),
|
|
('Anime', '0004_auto_20200807_1214'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='anime',
|
|
name='data_uscita',
|
|
field=models.CharField(blank=True, max_length=20, null=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name='anime',
|
|
name='guarda_dopo',
|
|
field=models.ManyToManyField(blank=True, related_name='anime_watch_later', to='core.Profilo'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='anime',
|
|
name='preferito',
|
|
field=models.ManyToManyField(blank=True, related_name='anime_preferiti', to='core.Profilo'),
|
|
),
|
|
]
|