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.
33 lines
902 B
33 lines
902 B
7 years ago
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.11 on 2017-07-18 11:25
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('django_chatterbot', '0007_response_created_at'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.RemoveField(
|
||
|
model_name='conversation',
|
||
|
name='statements',
|
||
|
),
|
||
|
migrations.RemoveField(
|
||
|
model_name='response',
|
||
|
name='occurrence',
|
||
|
),
|
||
|
migrations.RemoveField(
|
||
|
model_name='statement',
|
||
|
name='created_at',
|
||
|
),
|
||
|
migrations.AddField(
|
||
|
model_name='conversation',
|
||
|
name='responses',
|
||
|
field=models.ManyToManyField(help_text='The responses in this conversation.', related_name='conversations', to='django_chatterbot.Response'),
|
||
|
),
|
||
|
]
|