Skip to content

Commit

Permalink
Extra data is a field in Django that will disappear sooner or later, …
Browse files Browse the repository at this point in the history
…so this field is not required anymore when creating a new Statement/responds manually in Django Admin.
  • Loading branch information
Christian Petersson authored and gunthercox committed Aug 20, 2017
1 parent ca2a187 commit 324c312
Showing 1 changed file with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.4 on 2017-08-20 13:55
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('django_chatterbot', '0010_statement_text'),
]

operations = [
migrations.AlterField(
model_name='statement',
name='extra_data',
field=models.CharField(blank=True, max_length=500),
),
]

0 comments on commit 324c312

Please sign in to comment.