feat: update web Interface

This commit is contained in:
Yao Wang 2022-07-29 14:22:57 +02:00
parent d5d633b6c7
commit f9844dba10
1111 changed files with 171093 additions and 0 deletions

View file

@ -0,0 +1,27 @@
# Generated by Django 3.2.6 on 2021-08-16 20:18
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='Question',
fields=[
('ID', models.IntegerField(primary_key=True, serialize=False)),
('QA_results', models.CharField(max_length=20000)),
('reco_results', models.CharField(max_length=20000)),
('timeing', models.CharField(max_length=20000)),
('surveyData', models.CharField(max_length=20000)),
('tasks', models.CharField(max_length=20000)),
('workerId', models.CharField(max_length=20000)),
('assId', models.CharField(max_length=20000)),
],
),
]