123456789101112131415161718192021 |
- # -*- coding: utf-8 -*-
- # Generated by Django 1.10.7 on 2017-07-31 19:28
- from __future__ import unicode_literals
- from django.db import migrations, models
- class Migration(migrations.Migration):
- dependencies = [
- ('encuesta', '0001_initial'),
- ]
- operations = [
- migrations.AlterField(
- model_name='puntaje_encuesta',
- name='puntuacion',
- field=models.IntegerField(default=0, verbose_name='puntuacion'),
- ),
- ]
|