diff --git a/bots/migrations/0080_botintegration_twilio_fresh_conversation_per_call_and_more.py b/bots/migrations/0080_botintegration_twilio_fresh_conversation_per_call_and_more.py deleted file mode 100644 index 355c68877..000000000 --- a/bots/migrations/0080_botintegration_twilio_fresh_conversation_per_call_and_more.py +++ /dev/null @@ -1,23 +0,0 @@ -# Generated by Django 4.2.7 on 2024-08-09 19:18 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('bots', '0079_remove_botintegration_twilio_asr_language_and_more'), - ] - - operations = [ - migrations.AddField( - model_name='botintegration', - name='twilio_fresh_conversation_per_call', - field=models.BooleanField(default=False, help_text='If set, the bot will start a new conversation for each call'), - ), - migrations.AddField( - model_name='conversation', - name='twilio_call_sid', - field=models.TextField(blank=True, default='', help_text='Twilio call sid (only used if each call is a new conversation)'), - ), - ] diff --git a/bots/migrations/0081_alter_botintegration_streaming_enabled.py b/bots/migrations/0081_alter_botintegration_streaming_enabled.py deleted file mode 100644 index 81abe67fe..000000000 --- a/bots/migrations/0081_alter_botintegration_streaming_enabled.py +++ /dev/null @@ -1,18 +0,0 @@ -# Generated by Django 4.2.7 on 2024-08-23 17:14 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('bots', '0080_alter_botintegration_streaming_enabled'), - ] - - operations = [ - migrations.AlterField( - model_name='botintegration', - name='streaming_enabled', - field=models.BooleanField(default=True, help_text='If set, the bot will stream messages to the frontend'), - ), - ] diff --git a/bots/migrations/0081_remove_conversation_bots_conver_bot_int_73ac7b_idx_and_more.py b/bots/migrations/0081_remove_conversation_bots_conver_bot_int_73ac7b_idx_and_more.py index 3e98ac4f8..f491ebb64 100644 --- a/bots/migrations/0081_remove_conversation_bots_conver_bot_int_73ac7b_idx_and_more.py +++ b/bots/migrations/0081_remove_conversation_bots_conver_bot_int_73ac7b_idx_and_more.py @@ -1,4 +1,4 @@ -# Generated by Django 4.2.7 on 2024-08-28 06:45 +# Generated by Django 4.2.7 on 2024-08-28 12:30 from django.db import migrations, models @@ -6,7 +6,7 @@ class Migration(migrations.Migration): dependencies = [ - ('bots', '0080_botintegration_twilio_fresh_conversation_per_call_and_more'), + ('bots', '0080_alter_botintegration_streaming_enabled'), ] operations = [ @@ -14,6 +14,21 @@ class Migration(migrations.Migration): model_name='conversation', name='bots_conver_bot_int_73ac7b_idx', ), + migrations.AddField( + model_name='botintegration', + name='twilio_fresh_conversation_per_call', + field=models.BooleanField(default=False, help_text='If set, the bot will start a new conversation for each call'), + ), + migrations.AddField( + model_name='conversation', + name='twilio_call_sid', + field=models.TextField(blank=True, default='', help_text='Twilio call sid (only used if each call is a new conversation)'), + ), + migrations.AlterField( + model_name='botintegration', + name='streaming_enabled', + field=models.BooleanField(default=True, help_text='If set, the bot will stream messages to the frontend'), + ), migrations.AddIndex( model_name='conversation', index=models.Index(fields=['bot_integration', 'twilio_phone_number', 'twilio_call_sid'], name='bots_conver_bot_int_477755_idx'),