Skip to content

Commit

Permalink
Clean up migration files
Browse files Browse the repository at this point in the history
  • Loading branch information
gunthercox committed Jul 17, 2017
1 parent c52322f commit 3a5ff70
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions chatterbot/ext/django_chatterbot/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ class Migration(migrations.Migration):

initial = True

dependencies = [
]
dependencies = []

operations = [
migrations.CreateModel(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Migration(migrations.Migration):
name='created_at',
field=models.DateTimeField(
default=django.utils.timezone.now,
help_text=b'The date and time that this statement was created at.'
help_text='The date and time that this statement was created at.'
),
),
]
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='conversation',
name='statements',
field=models.ManyToManyField(help_text=b'The statements in this conversation.', related_name='conversation', to='django_chatterbot.Statement'),
field=models.ManyToManyField(help_text='The statements in this conversation.', related_name='conversation', to='django_chatterbot.Statement'),
),
]

0 comments on commit 3a5ff70

Please sign in to comment.