12345678910111213141516171819202122232425262728293031 |
- # -*- coding: utf-8 -*-
- # Generated by Django 1.11.5 on 2020-09-05 06:12
- from __future__ import unicode_literals
- from django.db import migrations, models
- class Migration(migrations.Migration):
- dependencies = [
- ('dati', '0003_auto_20200905_1110'),
- ]
- operations = [
- migrations.CreateModel(
- name='Scores',
- fields=[
- ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('user', models.CharField(max_length=128)),
- ('mobile', models.IntegerField()),
- ('department', models.CharField(max_length=128)),
- ('score', models.DecimalField(decimal_places=2, max_digits=3)),
- ('time', models.DateTimeField(auto_now=True)),
- ],
- ),
- migrations.AlterField(
- model_name='answerrecord',
- name='mobile',
- field=models.IntegerField(),
- ),
- ]
|