You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.9 KiB
46 lines
1.9 KiB
# Generated by Django 3.1.5 on 2021-04-30 14:28
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Question',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('session_id', models.CharField(blank=True, max_length=200, null=True)),
|
|
('question_text', models.CharField(max_length=200)),
|
|
('publi_date', models.DateTimeField(verbose_name='date published')),
|
|
],
|
|
),
|
|
migrations.CreateModel(
|
|
name='Question_Responce',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('session_id', models.CharField(blank=True, max_length=200, null=True)),
|
|
('question_text', models.CharField(max_length=200)),
|
|
('intent1', models.CharField(max_length=200)),
|
|
('accurancy1', models.CharField(max_length=200)),
|
|
('intent2', models.CharField(max_length=200)),
|
|
('accurancy2', models.CharField(max_length=200)),
|
|
('responce_text', models.CharField(max_length=200)),
|
|
('publi_date', models.DateTimeField(verbose_name='date published')),
|
|
],
|
|
),
|
|
migrations.CreateModel(
|
|
name='Responce',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('session_id', models.CharField(blank=True, max_length=200, null=True)),
|
|
('responce_text', models.CharField(max_length=200)),
|
|
('publi_date', models.DateTimeField(verbose_name='date published')),
|
|
],
|
|
),
|
|
]
|
|
|