20 lines
526 B
Python
20 lines
526 B
Python
|
# Generated by Django 3.0.7 on 2020-07-28 11:45
|
||
|
|
||
|
import django.core.validators
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('Film', '0003_auto_20200728_1143'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='film',
|
||
|
name='voto',
|
||
|
field=models.FloatField(blank=True, null=True, validators=[django.core.validators.MinValueValidator(1.0), django.core.validators.MaxValueValidator(10.0)]),
|
||
|
),
|
||
|
]
|