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.
34 lines
1.1 KiB
34 lines
1.1 KiB
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9 on 2017-01-17 07:02
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
import django.utils.timezone
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('django_chatterbot', '0005_statement_created_at'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Conversation',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
],
|
|
),
|
|
migrations.AlterField(
|
|
model_name='statement',
|
|
name='created_at',
|
|
field=models.DateTimeField(default=django.utils.timezone.now, help_text='The date and time that this statement was created at.'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='conversation',
|
|
name='statements',
|
|
field=models.ManyToManyField(help_text='The statements in this conversation.', related_name='conversation', to='django_chatterbot.Statement'),
|
|
),
|
|
]
|