25 lines
704 B
Python
25 lines
704 B
Python
|
# Generated by Django 3.1.4 on 2021-02-26 21:15
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('core', '0008_auto_20201011_1255'),
|
||
|
('SerieTV', '0021_auto_20201109_2011'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='serietv',
|
||
|
name='guarda_dopo',
|
||
|
field=models.ManyToManyField(blank=True, related_name='serietv_watch_later', to='core.Profilo'),
|
||
|
),
|
||
|
migrations.AddField(
|
||
|
model_name='serietv',
|
||
|
name='preferito',
|
||
|
field=models.ManyToManyField(blank=True, related_name='serietv_preferite', to='core.Profilo'),
|
||
|
),
|
||
|
]
|