Skip to content

Commit

Permalink
fix merged migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
SanderGi committed Mar 1, 2024
1 parent affd5a0 commit 6c97c52
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Generated by Django 4.2.7 on 2024-02-22 22:10
# Generated by Django 4.2.7 on 2024-03-01 03:08

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('bots', '0059_savedrun_is_api_call'),
('bots', '0060_conversation_reset_at'),
]

operations = [
Expand Down Expand Up @@ -40,4 +40,9 @@ class Migration(migrations.Migration):
name='wa_business_waba_id',
field=models.TextField(blank=True, default=None, help_text="Bot's WhatsApp Business API WABA id (mandatory) -- this is the one seen on https://business.facebook.com/settings/whatsapp-business-accounts/", null=True),
),
migrations.AlterField(
model_name='botintegration',
name='platform',
field=models.IntegerField(choices=[(1, 'Facebook'), (2, 'Instagram'), (3, 'WhatsApp'), (4, 'Slack')], help_text='The platform that the bot is integrated with'),
),
]

0 comments on commit 6c97c52

Please sign in to comment.