-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
29 additions
and
21 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Generated by Django 4.2.7 on 2024-02-05 15:11 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('bots', '0056_botintegration_streaming_enabled'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='message', | ||
name='response_time', | ||
field=models.DurationField(default=None, help_text='The time it took for the bot to respond to the corresponding user message', null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='botintegration', | ||
name='streaming_enabled', | ||
field=models.BooleanField(default=False, help_text='If set, the bot will stream messages to the frontend (Slack only)'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters