25 lines
680 B
Python
25 lines
680 B
Python
# Generated by Django 3.0.7 on 2020-08-04 10:57
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('core', '0004_profilo_colore_tema'),
|
|
('Film', '0011_auto_20200801_1452'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='film',
|
|
name='guarda_dopo',
|
|
field=models.ManyToManyField(blank=True, related_name='watch_later', to='core.Profilo'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='film',
|
|
name='preferito',
|
|
field=models.ManyToManyField(blank=True, related_name='preferiti', to='core.Profilo'),
|
|
),
|
|
]
|