19 lines
573 B
Python
19 lines
573 B
Python
# Generated by Django 3.2.8 on 2021-11-08 07:47
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('servicios', '0007_alter_serviciorealizado_options'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='ordenservicio',
|
|
name='val_serv',
|
|
field=models.CharField(blank=True, choices=[('Excelente', 'Excelente'), ('Regular', 'Regular'), ('Malo', 'Malo')], default='Excelente', max_length=13, null=True, verbose_name='Valoracion de Servicio'),
|
|
),
|
|
]
|